Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - SQLite-3.5.8
Search - SQLite-3.5.8 - List
sqlite-3.6.11.tar.gz 嵌入式数据库sqlite的linux安装包.嵌入式数据库是指运行在本机上、不用启动服务端的轻型数据库,它与应用程序紧密集成,被应用程序所启动,并伴随应用程序的退出而终止。 SQLite的特点如下: 1、无需安装配置,应用程序只需携带一个动态链接库。 2、非常小巧,For Windows 3.3.8版本的DLL文件才374KB。 3、ACID事务支持,ACID即原子性、一致性、隔离性、和持久性(Atomic、Consistent、Isolated、和 Durable)。 4、数据库文件可以在不同字节顺序的机器间自由的共享,比如可以直接从Windows移植到Linux或MAC。 5、支持数据库大小至2TB。
Update : 2009-04-10 Size : 2804714 Publisher : bong_chu

第一部分 Android简介 第1章 快速入门.............. 3 1.1 安装工具...... 3 1.1.1 Java 5.0+.... 3 1.1.2 Eclipse.......... 4 1.1.3 Android....... 4 1.1.4 Eclipse插件..................... 5 1.2 创建第一个程序.... 7 1.3 在模拟器上运行程序............... 8 1.4 在手机上运行程序..................... 9 1.5 快速阅读指南.......... 9 第2章 基本概念........... 11 2.1 Android的系统架构................ 11 2.1.1 Linux内核..................... 11 2.1.2 本机库...... 12 2.1.3 Android运行时......... 13 2.1.4 应用程序框架........... 14 2.1.5 应用程序 15 2.2 它还活着... 15 2.2.1 进程不等于应用程序......... 16 2.2.2 应用程序生命周期............... 17 2.3 构建块......... 19 2.3.1 活动............ 19 2.3.2 意图............ 19 2.3.3 服务............ 19 2.3.4 内容提供者................. 19 2.4 使用资源... 20 2.5 安全性......... 20 2.6 快速阅读指南....... 21 第二部分 Android基础知识 第3章 设计用户界面..................... 25 3.1 数独游戏简介....... 25 3.2 声明性设计............. 26 3.3 创建启动界面....... 27 3.4 使用替代资源....... 34 3.5 实现About对话框..................... 37 3.6 应用主题... 41 3.7 添加菜单... 43 3.8 添加设置... 45 3.9 开始新游戏............. 47 3.10 利用日志消息调试程序... 48 3.11 利用调试器调试程序......... 50 3.12 退出游戏 50 3.13 快速阅读指南.... 50 第4章 绘制2D图形...................... 53 4.1 Android图形基础...................... 53 4.1.1 Color类... 53 4.1.2 Paint类... 54 4.1.3 Canvas类 55 4.1.4 Path类...... 55 4.1.5 Drawable类................. 56 4.2 在Sudoku程序中添加图形............... 58 4.2.1 开始游戏 58 4.2.2 定义Game类................. 58 4.2.3 定义PuzzleView类............... 60 4.2.4 绘制游戏盘面........... 61 4.2.5 绘制数字 63 4.3 处理输入... 65 4.3.1 定义和更新选定区域......... 66 4.3.2 输入数字 68 4.3.3 增加提示 69 4.3.4 抖动屏幕 70 4.4 其他问题... 71 4.4.1 创建软键盘................. 71 4.4.2 实现游戏逻辑........... 76 4.4.3 其他功能 78 4.5 更多改进... 80 4.6 快速阅读指南....... 81 第5章 多媒体. 83 5.1 播放音频... 83 5.2 播放视频... 88 5.3 为数独游戏配上音乐............ 92 5.4 快速阅读指南....... 94 第6章 存储本地数据..................... 95 6.1 为数独游戏添加选项............ 95 6.2 继续玩前一个游戏.................. 97 6.3 记住当前位置....... 99 6.4 访问内部文件系统............... 100 6.5 访问SD卡.............. 101 6.6 快速阅读指南.... 103 第三部分 高级主题 第7章 互联的世界. 107 7.1 通过意图实现浏览............... 108 7.2 利用视图打开网页............... 111 7.3 JavaScript与Java通信.......... 115 7.4 使用Web服务..... 121 7.5 快速阅读指南.... 131 第8章 定位与环境感知........... 133 8.1 位置,位置,位置............... 133 8.1.1 我在哪里.................... 135 8.1.2 更新位置.................... 137 8.1.3 模拟说明.................... 138 8.2 充分利用传感器..................... 139 8.2.1 了解传感器.............. 139 8.2.2 解析传感器的读数............ 140 8.2.3 模拟说明.................... 140 8.3 地图功能 141 8.3.1 嵌入MapView........... 142 8.3.2 准备就绪.................... 145 8.3.3 模拟说明.................... 146 8.4 快速阅读指南.... 147 第9章 SQL实战...... 149 9.1 SQLite简介........... 149 9.2 SQL基础 150 9.2.1 DDL语句.................... 151 9.2.2 修改语句.................... 151 9.2.3 查询语句.................... 151 9.3 你好,数据库.... 152 9.3.1 使用SQliteOpenHelper 153 9.3.2 定义主程序.............. 155 9.3.3 添加一行.................... 156 9.3.4 运行一个查询........ 157 9.3.5 显示查询结果........ 158 9.4 数据绑定 159 9.5 使用ContentProvider...... 162 9.5.1 更改主程序.............. 164 9.5.2 添加一行.................... 164 9.5.3 运行一个查询........ 165 9.6 实现ContentProvider...... 165 9.7 快速阅读指南.... 166 第10章 利用OpenGL实现3D图形.............. 169 10.1 理解3D图形..... 169 10.2 OpenGL简介.... 170 10.3 构建一个OpenGL程序... 171 10.4 管理线程............. 173 10.5 构建一个模型. 178 10.6 光线、相机…….................. 181 10.7 动作......... 183 10.8 应用纹理............. 184 10.9 透明效果............. 187 10.10 快速阅读指南..................... 189 第四部分 附录 附录A Java与Android语言及其API.......... 193 附录B 参考书目........ 197
Update : 2010-11-08 Size : 13578541 Publisher : pumaxy

项目描述: SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. Features include- Project description: SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. Features include
Update : 2024-04-20 Size : 165888 Publisher : 残梦

嵌入式数据库sqlite 3.5.9的源代码,很有参考价值-Embedded database sqlite 3.5.9 source code, useful reference
Update : 2024-04-20 Size : 2200576 Publisher : henry

DL : 0
一个跨平台的数据库操作库文件,可以轻松在linux和windows下进行数据库读写以及其他的操作,支持多种数据库,代码包含很多example,初学者很容易上手. OTL 是 Oracle, Odbc and DB2-CLI Template Library 的缩写,是一个C++编译中操控关系数据库的模板库,它目前几乎支持所有的当前各种主流数据库,例如Oracle, MS SQL Server, Sybase, Informix, MySQL, DB2, Interbase / Firebird, PostgreSQL, SQLite, SAP/DB, TimesTen, MS ACCESS等等。OTL中直接操作Oracle主要是通过Oracle提供的OCI接口进行,进行操作DB2数据库则是通过CLI接口来进行,至于MS的数据库和其它一些数据库,则OTL只提供了ODBC来操作的方式。当然Oracle和DB2也可以由OTL间接使用ODBC的方式来进行操纵。 在MS Windows and Unix 平台下,OTL目前支持的数据库版本主要有:Oracle 7 (直接使用 OCI7), Oracle 8 (直接使用 OCI8), Oracle 8i (直接使用OCI8i), Oracle 9i (直接使用OCI9i), Oracle 10g (直接使用OCI10g), DB2 (直接使用DB2 CLI), ODBC 3.x ,ODBC 2.5。-err
Update : 2024-04-20 Size : 820224 Publisher : 刘火明

关于habari Habari为“下一代”Blog程序,一个艺术级的发布平台,来源于Wordpress,是Wordpress的部分成员因为不满Wordpress日益商业化和matt的独断,离开Wordpress另外开发一个项目。是博客软件中的后起之秀。 Habari功能 1、采用模块化和面向对象的设计模,使其非常容易扩展 2、支持多种数据库做为后端(MySQL, SQLite, PostgreSQL) 3、事先准备的语句用于阻止SQL语句的入侵 4、Media仓库用于直接存储不同形式的媒体,如:Flickr、Viddler或server s 5、支持Atom发布协议 6、支持多作者 7、可安装多个站点 8、支持静态页面内容 9、支持插件 10、支持标签 11、可以导入Serendipity和WordPress数据 -About habari Habari for "next generation" Blog program, an art publishing platform, from Wordpress, is that some members of Wordpress because of dissatisfaction with the increasing commercialization of Wordpress and the matt of the dogmatic left Wordpress additional development of a project. Blog software is a rising star. Habari function 1, using modular and object-oriented design mode, make it very easy to extend 2, supports a variety of databases as a back-end (MySQL, SQLite, PostgreSQL) 3, pre-prepared statement SQL statement used to prevent the invasion of 4, Media storage for direct storage of different forms of media, such as: Flickr, Viddler, or server s 5, support the Atom Publishing Protocol 6, supports multi-author 7, can be installed across multiple sites 8, support the static page content 9, support plug-ins 10, support tab 11, Serendipity and WordPress can import data
Update : 2024-04-20 Size : 932864 Publisher : 小妮子

This pdf ebook lets you 1. Getting to Know Android 2. Setting Up Your Android Development Environment 3. Using the Android Development Environment for Real Applications 4. Debugging Android Applications 5. Signing and Publishing Your Application 6. Know about SQLite databases 7. Develop applications that support location & mapping services 8. Know more about views, widgets 9. Know about inter process communication With the help of this ebook you can develop an Android Appmarket quality application.-This pdf ebook lets you 1. Getting to Know Android 2. Setting Up Your Android Development Environment 3. Using the Android Development Environment for Real Applications 4. Debugging Android Applications 5. Signing and Publishing Your Application 6. Know about SQLite databases 7. Develop applications that support location & mapping services 8. Know more about views, widgets 9. Know about inter process communication With the help of this ebook you can develop an Android Appmarket quality application.
Update : 2024-04-20 Size : 2906112 Publisher : Senthil

XE7 安卓手机开发框架 1、主菜单与主界面的切换 2、StyleBook的设计 3、界面布局 4、显示数据界面框架 5、编辑界面框架,包括输入框输入的时候键盘问题 6、WSDL接口调用,实现数据同步服务器 7、DataSet转JSON,JSON转DataSet功能 8、报表框架 9、查询框架 10、单选择框、多选择框、日期选择框 11、本地数据库SQLITE的访问及操作、及数据库图片操作 12、获取本版号 13、提示框、提示汉化 14、百度定位 15、扫描二维码和条码 16、拔电话,(安卓、IOS通用) 17、通讯录(ABC滑动) 18、汉字拼音码 19、版本更新日志 20、通知提醒 21、分享界面 22、安卓版本升级 23、PHP的接口调用,实现数据同步服务器 24、等待进度条框、等待框 25、DATASNAP服务通讯 (有 电脑测试端) 26、多图片之间的切换 27、HTTPServer 服务器接口(有HTTP 电脑测试端) 28、选择文件对话框 29、图片上传、图片下载 30、通知提醒指定到那个窗体 31、二维码在线生成 32、手机截屏-XE7 Android mobile development framework 1, the main menu and the main interface of the switch 2, StyleBook design 3, interface layout 4, display data interface framework 5, edit the interface frame, including the input box keyboard questions 6, WSDL interface call to achieve data synchronization server 7, DataSet to JSON, JSON turn DataSet function 8. Report framework 9, query framework 10, choose the radio frame, more choice of frame, date selection box 11, the local SQLITE access and operation, and image operation 12, access to the code 13, prompt box prompt, finished 14, Baidu positioning 15, scanning two-dimensional code and bar code 16, pull the phone, (Android, IOS general) 17, contact record (ABC sliding) 18, Chinese character Pinyin code 19, version update log 20, notice reminder 21, sharing interface 22, Android version upgrade 23, PHP interface call to achieve data synchronization server 24, waiting fo
Update : 2024-04-20 Size : 1016832 Publisher : XHACK

DL : 0
Habari功能 1、采用模块化和面向对象的设计模,使其非常容易扩展 2、支持多种数据库做为后端(MySQL, SQLite, PostgreSQL) 3、事先准备的语句用于阻止SQL语句的入侵 4、Media仓库用于直接存储不同形式的媒体,如:Flickr、Viddler或server s 5、支持Atom发布协议 6、支持多作者 7、可安装多个站点 8、支持静态页面内容 9、支持插件 10、支持标签 11、可以导入Serendipity和WordPress数据-The function of Habari 1, using modular and object-oriented design mode, make it very easy to extend 2, support a variety of as the back-end (MySQL, SQLite, PostgreSQL) 3, a prepared statement SQL statement used to prevent the invasion 4, Media warehouse for direct storage of different forms of media, such as: Flickr, Viddler or server s 5, support Atom release agreement 6, support multiple authors 7, can be installed more than one site 8, support the static page content 9, support plug-ins 10, support the label 11, you can import the Serendipity and WordPress data
Update : 2024-04-20 Size : 1363968 Publisher : sunsukki

DL : 0
使用 PHP+Mysql 同时支持Sqlite数据库 2.用户可随意发帖、回复,无需注册 3.管理员可在后台添加主人回复 4.管理员可以置顶留言 5.留言列表可通过Ajax方式展开 6.可通过RSS聚合随时查看最新留言 7.使用KindEditor作为编辑器 8.快速发表留言或回复可选择使用UBB代码 9.后台提供几项简单的设置-Using PHP+Mysql to support the Sqlite 2 users can post, reply, no need to register 3 administrators can add the master reply in the background 4 administrators can top message 5 message list can be launched through the Ajax 6 can be aggregated by RSS at any time to view the latest message 7 use KindEditor as editor 8 quick to leave a message or reply to choose to use the UBB code 9 background to provide a few simple settings
Update : 2024-04-20 Size : 555008 Publisher : impudn61

DL : 0
自带主题切换和历史记录的计算器布局和SQLite应用比较复杂整个项目分了好几个层。 主要功能: 1、切换日光\夜间模式 2、记录每次计算的过程和结果 (添加、删除数据库) 3、按钮震动 4、欢迎界面(3秒)进入主界面 5、双击退出程序 6、实现简单计算器的基本运算 默认编码UTF-8,编译版本4.4.2,注释较少 -Comes with the theme of the switch and the history of the layout of the calculator layout and SQLite applications more complex the whole project points out several layers. Main function: 1, switch the sun \ night mode 2, record the process and results of each calculation (add, delete ) 3, button vibration 4, welcome to the interface (3 seconds) to enter the main interface 5, double click to exit the program 6, the realization of the basic operation of a simple calculator The default encoding UTF-8, compiled version 4.4.2, less comment
Update : 2024-04-20 Size : 19736576 Publisher : 王忠予

DL : 0
1.使用 PHP+Mysql 同时支持Sqlite数据库 2.用户可随意发帖、回复,无需注册 3.管理员可在后台添加主人回复 4.管理员可以置顶留言 5.留言列表可通过Ajax方式展开 6.可通过RSS聚合随时查看最新留言 7.使用KindEditor作为编辑器 8.快速发表留言或回复可选择使用UBB代码 9.后台提供几项简单的设置-1. Use PHP+ Mysql supports Sqlite 2. Users are free to post messages, reply, no registration 3. The administrator can add the owner Top reply 4. Administrators can leave a message in the background 5. Comments by Ajax way 6. Expand through RSS feeds at any time to view the latest comments 7. KindEditor as editor 8. rapid comment or reply to the option of using UBB Code 9. the background to provide a few simple settings
Update : 2024-04-20 Size : 551936 Publisher : 饶熠舟

DL : 0
支持多种数据库,MySQL, Oracle, PostgreSQL, Microsoft SQL Server, Microsoft Access, IBM DB2, SQLite, Firebird, Sybase和SAP MaxDB。 支持不同的注入模式 1、基于布尔的盲注,即可以根据返回页面判断条件真假的注入。 2、基于时间的盲注,即不能根据页面返回内容判断任何信息,用条件语句查看时间延迟语句是否执行(即页面返回时间是否增加)来判断。 3、基于报错注入,即页面会返回错误信息,或者把注入的语句的结果直接返回在页面中。 4、联合查询注入,可以使用union的情况下的注入。 5、堆查询注入,可以同时执行多条语句的执行时的注入。-Support for multiple s, MySQL, Oracle, PostgreSQL, SQL Server Microsoft, Access Microsoft, DB2 IBM, SQLite, Firebird, Sybase, and MaxDB SAP. Support different injection modes 1, based on the Boolean blind note, that can be based on the return of the page to determine the conditions of the injection. 2, based on the time of the blind, that can not be returned to the content of the page to judge any information, use the conditional statement to see whether the time delay statement execution (that is, whether the page return time increases) to judge. 3, based on the error injection, that the page will return the wrong information, or the results of the injected statement directly back to the page. 4, joint query injection, can be used in the case of union injection. 5, heap query injection, you can multiple statements at the same time the implementation of the injection.
Update : 2024-04-20 Size : 16295936 Publisher : 123123

更新日志: 1.新增米拓小程序数据平台免费应用插件,支持10合1建站:电脑、手机、平板、微官网、小程序(微信、百度、支付宝、字节跳动[今日头条、抖音]、360、QQ); 2.新增支持SQLite数据库功能,可免安装使用或在后台切换数据库类型; 3.新增隐藏无权限内容功能,管理员可设置无阅读权限内容的显示方式; 4.新增自定义会员字段不可编辑功能,管理员可手动设置会员特征,会员无法自行修改; 5.新增应聘简历批量导出功能; 6.新增按职位筛选简历功能; 7.新增设置前台版权链接nofollow属性功能; 8.新增http强制跳转https功能 9.恢复企业QQ客服功能; 10.优化301跳转功能; 11.优化老版本升级自动关闭wap端跳转; 12.优化和完善手机管理后台功能; 13.优化服务器环境检测功能; 14.优化编辑器图片管理功能; 15.优化修复编辑器内容分页功能; 16.优化sitemap、robots、静态页面生成功能; 17.优化栏目添加、移动、复制功能; 18.优化搜索功能; 19.优化TAG标签自动静态页面名称及部分细节功能; 20.优化验证码功能; 21.修复编辑器内容分页功能; 22.修复应用插件多语言批量编辑功能; 23.修复商业模板手机横屏响应式BUG; 24.优化修复后台多处多语言文字及功能细节; 25.优化metv7模板首页“成功案例”区块图片尺寸设置功能。
Update : 2019-12-03 Size : 19221639 Publisher : market@mituo.cn
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.