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

Search list

[Other resourcesqlite-3.2.7.tar

Description: pda上的数据库,速度快,体积小,做朋友的福音-pda on the database, speed, small size, making friends with the Gospel
Platform: | Size: 1521075 | Author: xjjxing | Hits:

[Other resourcesqlite-3.3.7-arm-linux.tar

Description: 嵌入式数据库SQLITE,含移植到ARM_LINUX的说明-SQLITE embedded database containing transplanted to the note ARM_LINUX
Platform: | Size: 4975407 | Author: zhj | Hits:

[Other resourcesqlite-3.3.7.tar

Description: sqlite嵌入式数据库源码,不错的数据库-sqlite source embedded database, a good database
Platform: | Size: 1722449 | Author: 宇航 | 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:

[Embeded Linuxsqlite-3.2.7.tar

Description: pda上的数据库,速度快,体积小,做朋友的福音-pda on the database, speed, small size, making friends with the Gospel
Platform: | Size: 1520640 | Author: | Hits:

[Embeded Linuxsqlite-3.3.7-arm-linux.tar

Description: 嵌入式数据库SQLITE,含移植到ARM_LINUX的说明-SQLITE embedded database containing transplanted to the note ARM_LINUX
Platform: | Size: 4975616 | Author: zhj | Hits:

[Other Databasessqlite-3.3.8.tar

Description: 嵌入式数据库,在嵌入式平台上实现数据库功能,没有数据引擎,符合sql92标准-embedded database, the embedded platform database functions, data engines, in line with standard sql92
Platform: | Size: 1922048 | Author: ludong | Hits:

[MiddleWaresqlite-3.3.7.tar

Description: sqlite嵌入式数据库源码,不错的数据库-sqlite source embedded database, a good database
Platform: | Size: 1722368 | Author: 宇航 | Hits:

[Embeded-SCM Developsqlite

Description: 译本嵌入式数据库sqlite的电子书,值得大家参考.-Sqlite embedded database version of the e-book, it is worth your consideration.
Platform: | Size: 5978112 | Author: 唐笑笑 | Hits:

[Other Databasessqlite-3.6.2.tar

Description: 最新的sqlite3.6.2源代码,完整版本。sqlite3是一个强大的嵌入式数据库。在嵌入式系统的中广泛使用,比起其他C/S、B/S结构的数据库。sqlite3更简洁,占用资源更少。-Sqlite3.6.2 the latest source code, full version. sqlite3 is a powerful embedded database. Embedded systems in widespread use when compared with other C/S, B/S structure database. sqlite3 more concise, taking up fewer resources.
Platform: | Size: 2313216 | Author: 李姚 | Hits:

[ARM-PowerPC-ColdFire-MIPSsqlite

Description: 在GEC2410平台上的编译应用SQLite-3.6.7的全过程和源代码-In GEC2410 platform SQLite-3.6.7 compiler application of the entire process and source code
Platform: | Size: 2588672 | Author: fcoolt | 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:

[Internet-Networksqlite-3.7.3.tar

Description: SQLite,是一款轻型的数据库,是遵守ACID的关联式数据库管理系统,它的设计目标是嵌入式的,而且目前已经在很多嵌入式产品中使用了它,它占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够了。它能够支持Windows/Linux/Unix等等主流的操作系统,同时能够跟很多程序语言相结合,比如 Tcl、C#、PHP、Java等,还有ODBC接口,同样比起Mysql、PostgreSQL这两款开源世界著名的数据库管理系统来讲,它的处理速度比他们都快。-SQLite, the database is a lightweight, is to abide by ACID relational database management system, which is designed to be embedded, and embedded in many products now used it, it is very low footprint in the embedded devices, you may only need a few hundred K of memory is enough. It supports Windows/Linux/Unix, and so the mainstream operating system, but can be combined with many programming languages such as Tcl, C#, PHP, Java, etc., as well as ODBC interface, as compared to Mysql, PostgreSQL open-source these two the world' s leading database management system is concerned, its processing speed faster than they are.
Platform: | Size: 3410944 | Author: 王晶 | Hits:

[Linux-Unixsqlite3-3.7.3

Description: sqlite最新版本 支持linux平台,支持C语言,便利的API-the latest version of sqlite support linux platform to support C language API to facilitate
Platform: | Size: 237568 | Author: xj | Hits:

[ADO-ODBCSQLite-3.7.5_20110321195907

Description: SQLite3.7.5 dll 动态文件库描述,简单的使用这个接口-SQLite3.7.5 dll dynamic library description, simply use this interface
Platform: | Size: 290816 | Author: kellen | Hits:

[ADO-ODBCsqlite-amalgamation-3.7.2.tar

Description: sqlite3.7.2的数据库,本人实际使用的,是非常好的嵌入式数据库,在Windows下也可以使用。-sqlite3.7.2,a very useful database
Platform: | Size: 1499136 | Author: 黄维光 | Hits:

[Other Databasessqlite-autoconf-3070603.tar

Description: SQLite,是一款轻型的数据库,是遵守ACID的关联式数据库管理系统,它的设计目标是嵌入式的,而且目前已经在很多嵌入式产品中使用了它,它占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够了。它能够支持Windows/Linux/Unix等等主流的操作系统,同时能够跟很多程序语言相结合。这个压缩文件包含了必要的文件。更多资料:http://www.sqlite.org/about.html-This ZIP archive contains all C source code for SQLite 3.7.6.3 combined into a single source file 。
Platform: | Size: 1720320 | Author: jinguoju | Hits:

[Other Databasessqlite-Src

Description: sqlite 3.7.8 database by c
Platform: | Size: 1329152 | Author: charles wales | Hits:

[ADO-ODBCSqlite

Description: sqlite安装包, 3.7.15.2版本(sqlite installer, 3.7.15.2ver)
Platform: | Size: 2037760 | Author: lhkf5063 | Hits:

[sqlite-3.7.3

Description: SQLite,是一款轻型的数据库,是遵守ACID的关系型数据库管理系统,它包含在一个相对小的C库中。它是D.RichardHipp建立的公有领域项目。它的设计目标是嵌入式的,而且目前已经在很多嵌入式产品中使用了它,它占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够了。它能够支持Windows/Linux/Unix等等主流的操作系统,同时能够跟很多程序语言相结合,比如 Tcl、C#、PHP、Java等,还有ODBC接口,同样比起Mysql、PostgreSQL这两款开源的世界著名数据库管理系统来讲,它的处理速度比他们都快。(SQLite, a lightweight database, is a relational database management system that complied with ACID, which is included in a relatively small C library. It is a public domain project established by D.RichardHipp. Its design goal is embedded, and it has been used in many embedded products. It occupies very low resources. In embedded devices, it may only need hundreds of K of memory. It can support the mainstream Windows/Linux/Unix operating system and so on, and can combine with many programming languages, such as Tcl, C#, PHP, Java, and ODBC interface, as compared to the world famous Mysql database management system, PostgreSQL two of the source, the processing speed is faster than they.)
Platform: | Size: 3418112 | Author: q风q | Hits:
« 12 3 »

CodeBus www.codebus.net