Welcome![Sign In][Sign Up]
Location:
Search - sqlite 3.6.11

Search list

[Other Databasessqlite-3.6.11 linux下安装包

Description: 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。
Platform: | Size: 2804714 | Author: bong_chu | Hits:

[BooksAndroid基础教程

Description: 第一部分 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
Platform: | Size: 13578541 | Author: pumaxy | Hits:

[ADO-ODBCsqlite3

Description: sqlite 3.6.11 高效,完全免费,开源的文件数据库-sqlite 3.6.11 free source code
Platform: | Size: 745472 | Author: lxp | Hits:

[OS programHabari0-7-alpha-zh-cn

Description: 关于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
Platform: | Size: 932864 | Author: 小妮子 | Hits:

[Othersqlite3_analyzer-3.6.1

Description: sqlite3.1不错的数据库,很小。很多平台可以使用!比较难找到!-sqlite3.1 good databases, very small. Many platforms can be used! Become harder to find!
Platform: | Size: 521216 | Author: 阿桂 | Hits:

[Other Databasessqlite-3.3.6.tar

Description: 只是针对嵌入式Linux的一款数据库,可移植性很高,这是在Linux下编译所需的源码-sqlite3 for linux
Platform: | Size: 1671168 | Author: y | Hits:

[Database systemrealse

Description: 数据库访问操作 数据库操作类: 支持 SQLServer mysql sqlite Sybase Oracle等DB 数据库操作类 包括执行SQL或者存储过程,返回DataSet、DataTable等功能 完全支持存储过程和参数调用 javascriptClassLibrary 包括一些JavaScript 类封装 StringValid:字符串校验类 说明: 代码全部都是用 C# 语言(除JavaScript部分) 基于.net 2.0平台, 纯IL语言 Asp.net 和Winform WPF都可以使用 类库还分X86 和ANY 两种平台,满足将来 64位操作系统需要! 怎么使用呢? 1、ConnectionStrings.com 查找到 所需要的数据连接 字符串 2、找连接所需要类 我差不多都给你准备好了 3、区分好X86 和ANY的库 对于32位数据库只能用X86,64位的话用Any 比如 Sql Server 就有32位和64位之分 假如 你都用 32位,就用X86 如果 你打算 32位系统用32位Sql Server ,64位系统用64位Sql Server 那么可以使用Any 另外要注意 有的数据库只有32位,截至软件发布 2009-11-6 Sql Server Express和Access 都只有32位 4、 使用Microsoft Visual Studio 或者其他工具引用你需要的库 像 Sybase sqlite 都有链接库 就必须都要拷贝过去-Database operations categories: support for SQLServer mysql sqlite Sybase Oracle database operations such as DB Category Including the implementation of SQL or stored procedure and return DataSet, DataTable etc. Fully support the call stored procedures and parameters javascriptClassLibrary including some JavaScript class encapsulates StringValid: String Validation Class Description: All the code with C# language (except for some JavaScript) Based. Net 2.0 platform The language of pure IL Asp.net and Winform WPF can be used ANY library also points X86 and two platforms to meet the needs of the future 64-bit operating system! How to use it? 1, ConnectionStrings.com find the required data connection string 2, to connect the required class I am almost ready to give you 3, the distinction between good and ANY X86 libraries Database can only be used for 32-bit X86, 64-bit words with Any Such as Sql Server have 32-bit and 64-bit divided If you are
Platform: | Size: 1550336 | Author: Valiant | Hits:

[Windows CESQLite3.7.11

Description: SQLite最新版本3.7.11,在VS2005基于WINCE6.0平台上编译通过,并应用于实现项目中。在VS2005中打开时需要安装TQ2440A SDK 。也可以编辑项目文件,将其修改为本机已安装的SDK平台。-SQLite latest version 3.7.11, in the VS2005-based the WINCE6.0 platforms, compiler, and applied to achieve the project. Opened in VS2005 install TQ2440A the SDK. You can also edit the project file, modify the native SDK installed platform.
Platform: | Size: 1184768 | Author: ourbone | Hits:

[Delphi/CppBuilderFrameAPK

Description: 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
Platform: | Size: 1016832 | Author: XHACK | Hits:

[WEB Codehabarizh-cn

Description: 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
Platform: | Size: 1363968 | Author: sunsukki | Hits:

[PHPMetInfo米拓企业建站系统

Description: 更新日志: 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模板首页“成功案例”区块图片尺寸设置功能。
Platform: | Size: 19221639 | Author: market@mituo.cn | Hits:

CodeBus www.codebus.net