Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - sqlite-3.5
Search - sqlite-3.5 - List
新版轻量级嵌入式数据库,经交叉编译后可用于嵌入式系统。-new lightweight embedded database that can be cross-compiled for embedded systems.
Update : 2008-10-13 Size : 1651536 Publisher : 姜景捷

DL : 0
sqlite 3.5.9的动态链接库及工程,吐血推荐
Update : 2008-10-13 Size : 1008165 Publisher : henry

嵌入式数据库sqlite 3.5.9的文档,配合源码
Update : 2008-10-13 Size : 1336032 Publisher : henry

用DISQLite控件连接SQLite Sqlite Delphi 的封装
Update : 2008-10-13 Size : 1537116 Publisher : dorry

第一部分 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 3.5.9的文档,配合源码-Sqlite 3.5.9 embedded database of documents, with the source
Update : 2024-05-08 Size : 1335296 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-05-08 Size : 820224 Publisher : 刘火明

DL : 0
首先 感谢您使用 TinaCMS ,对于一个开源软件的开发者来说,软件被广泛的使用是对我工作最大的回报。 本软件不收取任何费用,可以用在任何用途,前提是保留开发者信息 以及到我网站的连接 phppro.cn 环境: php+ sqlite.so (php5自带) 安装: 1.将 admin.php 复制到 任何目录下 2.执行 admin.php 备注: 安全起见,您可以给 admin.php 改一个文件名。 版本号 1.2 主要修改内容 1. 增加了演示数据 2. 改进了 bbcode 支持 flash 等文档。 3. 修改个别文字错误 4. 改进了修改模板后直接重生成。 5. 改进了索引方式 6. 改进了插入文件的功能(增加了默认目录)-First of all, Thank you for using TinaCMS, a developer of open source software, the software has been widely used is the largest return on my work. The software does not collect any fees, can be used in any purpose, provided the developer is to retain information, as well as connect to my site phppro.cn environment: php+ sqlite.so (php5 own) Installation: 1. Will be copied to any admin.php directory 2. admin.php implementation Remarks: safety, you can change to a file name admin.php. 1.2 The main changes the version number 1. An increase of presentation of data 2. Bbcode support to improve the document, such as flash. 3. To amend the text of individual error 4. To improve the modified re-generate the template directly. 5. To improve the way the index 6. To improve the function of the inserted document (an increase of the default directory)
Update : 2024-05-08 Size : 9216 Publisher : 杜为

Sqlite 开发包纯VCL组件,用此开发包,可以在发布sqlite程序时,不用带D-Sqlite pure VCL component development kit, with this development kit, you can release sqlite program, not with DLL
Update : 2024-05-08 Size : 2236416 Publisher : LWM

PHP: A Beginner’s Guide contains information on the PHP 5.2 and 5.3-alpha programming toolkit and its most commonly used features: MySQL and SQLite database integration, XML processing capabilities, and third-party extensions. It provides one-stop coverage of software installation, language syntax and data structures, flow control routines, built-in functions, and best practices. Each chapter also includes numerous practical projects that the reader can “follow along with” to gain a practical understanding of the material being discussed.
Update : 2024-05-08 Size : 5246976 Publisher : powgo

DL : 0
iPhone Cool Projects 2009 CHAPTER 1 Designing a Simple, Frenzic-Style Puzzle Game CHAPTER 2 Mike Ash’s Deep Dive Into Peer-to-Peer Networking CHAPTER 3 Doing Several Things at Once: Performance Enhancements with Threading CHAPTER 4 All Fingers and Thumbs: Multitouch Interface Design and Implementation CHAPTER 5 Physics, Sprites, and Animation with the cocos2d-iPhone Framework CHAPTER 6 Serious Streaming Audio the Pandora Radio Way CHAPTER 7 Going the Routesy Way with Core Location, XML, and SQLite
Update : 2024-05-08 Size : 3175424 Publisher : vhpham80

稻草人企业站特点: 1、程序分为php+sqlite、php+mysql两个版本 2、程序采用php+smarty模板技术 修改模板方便 3、程序安装在任意目录下。您可以选择安装在根目录下 也可以选择在非根目录下-Scarecrow enterprise Station Features: 1, the program is divided into php+ sqlite, php+ mysql 2 version 2, the program using php+ smarty template modify the template to facilitate 3 technology, the program installed in any directory. You can choose to install in the root directory can also choose the non-root directory
Update : 2024-05-08 Size : 1333248 Publisher : ...

AKCMS是轻量级CMS 兼容性好,对主机要求低 各种操作系统(Linux、Windows)AKCMS全部工作正常 各种服务器(Apache、nginx)AKCMS全部工作正常 PHP各种版本(4.0*-5.*)AKCMS全部工作正常 各种数据库:MySQL(3.*、4.*、5.*)、SQLite(2.*、3.*)、Pdo数据接口,支持任意一种均可,AKCMS全部工作正常。 无需特殊服务器设置,市面上的虚拟主机(包括几乎全部免费主机)都可以正常运行AKCMS。-AKCMS is lightweight CMS Good compatibility, low demand on the host Various operating systems (Linux, Windows) AKCMS all working properly A variety of servers (Apache, nginx) AKCMS all working properly Various versions of PHP (4.0*- 5 .*) AKCMS all working properly A variety of databases: MySQL (3 .*, 4 .*, 5 .*), SQLite (2 .*, 3 .*), Pdo data interface, can support either, AKCMS all working properly. No special server settings, virtual host market (including almost all free hosting) can run AKCMS.
Update : 2024-05-08 Size : 285696 Publisher : zcadqewxs

SQLite,linux下的数据库管理和开发,对数据库的一些基本操作-SQLite, Linux of database management and development of database, some of the basic operations
Update : 2024-05-08 Size : 1147904 Publisher : 昝雪

DL : 0
代码介绍: SQLite,是一款轻型的数据库,是遵守ACID的关联式数据库管理系统,它的设计目标是嵌入式的,而且目前已经在很多嵌入式产品中使用了它,它占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够了。它能够支持Windows/Linux/Unix等等主流的操作系统,同时能够跟很多程序语言相结合,比如 Tcl、C#、PHP、Java等,还有ODBC接口,同样比起Mysql、PostgreSQL这两款开源世界著名的数据库管理系统来讲,它的处理速度比他们都快。SQLite第一个Alpha版本诞生于2000年5月. 至今已经有10个年头,SQLite也迎来了一个版本 SQLite 3已经发布。 还有一件事,大家下载的时候,不要加数据库连接驱动包。本项目是不用的。-Code description: SQLite, a lightweight database, comply with the ACID-compliant relational database management system, its design goals is embedded, and has been used in many embedded products it, it takes up resources is very low in the embedded devices may only need a few hundred K of memory is enough. It can support Windows/Linux/Unix mainstream operating system, combining with many programming languages ​ ​ such as Tcl, C#, PHP, Java and other ODBC interface, the same compared to the Mysql, PostgreSQL Both open source world-renowned database management system in terms of its processing speed faster than they are. SQLite first Alpha version was born in May 2000 has been 10 years, SQLite also ushered in a version of SQLite 3 has been released. One more thing, when you download, do not add the database connection drive package. This project is not.
Update : 2024-05-08 Size : 56320 Publisher : li

稻草人企业站管理系统基于php+sqlite与php+mysql两个版本,php+sqlite特点和asp+access差不多,优点是利于备份,现在大多网站空间都支持php+sqlite。php+mysql特点是利于处理大量的数据,但备份和还原不方便。 网站特点: 1、程序分为php+sqlite、php+mysql两个版本 2、程序采用php+smarty模板技术 修改模板方便 3、程序采用面对对象 模块开发.调用管理方便 4、程序可以开启伪静态功能 5、后台能编辑删除文件 6、后台能进行数据库管理、备份等操作 6、生成百度sitemap、Google sitemap功能 7、留言发邮件功能-The Scarecrow enterprises station management system based almost the two versions php+sqlite with php+mysql, php+sqlite FEATURES and asp+access of advantages is conducive to backup, and now most of the website space support php+sqlite. php+mysql characteristics conducive to handling large amounts of data, but backup and restore inconvenient. The website features: 1, the program is divided into php+sqlite php+mysql two versions, the program uses php+smarty template technology to modify the template convenient 3, the program uses the face of the object module development. Call management convenience 4, the program can open the pseudo-static function 5, the background can edit delete files, background database management, backup and other operations to generate Baidu a sitemap Google the a sitemap functional 7 message mail
Update : 2024-05-08 Size : 1082368 Publisher : sagfioi

基于三星SBC6410测试程序源码,包含: hell0 madplay WebCam wget-1.10.2 wireless UDP sqlite-3.5.9 boa-0.94.13 cgic205 全部源码和可执行文件-SBC6410 test program source code, including:       hell0         madplay         WebCam         wget-1.10.2         wireless         UDP         sqlite-3.5.9         boa-0.94.13         cgic205 All source code and executable files
Update : 2024-05-08 Size : 15499264 Publisher : 付伟

DL : 0
改进:itemtypes:隐藏的ID转换frmget frmpost 改进:statustypes:隐藏的ID 改进:升级的jQuery 1.5.1 - > 1.6 改进:删除的复选框,以便节省各个机架。所有机架保存一次 改进:选项卡现在显示加载后,抑制瞬时显示unformated页面内容 改进:增加 的观点架 图标,主屏幕 改进:增加了STH -> closeCursor() 大部分功能免费SQLite的游标 改进:分配项目的地区,不能被删除 -Improved: itemtypes: hidden ID conversion frmpost frmget Improved: statustypes: hidden ID Improved: upgraded 1.5.1 jQuery- > 1.6 Improvement: delete the check box to save each frame. All save a frame Improvement: tab now shows the load, inhibit the transient display unformated page content Improvements point of view icon, the main screen Improved: increase of STH (closeCursor)- > most of the functions of free SQLite cursor Improvement: the distribution project area, can not be deleted
Update : 2024-05-08 Size : 4258816 Publisher : 牟振平

UCMS通用建站系统是一款简单的开源内容管理系统,可以非常方便的通过它来快速开发各种各种企业站、文章站、站群系统。 系统兼容PHP5.2 PHP7.0,在APACHE、NGINX、IIS上都能使用,支持MySQL SQLite两种数据库。 后台简洁高效,上手容易,结构清晰,管理维护方便。-UCMS general station system is a simple open source content management system, can be very convenient through it to quickly develop a variety of enterprise station, the article station, station group system. System compatible with PHP5.2 PHP7.0, APACHE, NGINX, IIS can be used to support the SQLite MySQL two . The background is simple and efficient, easy to use, clear structure, easy to manage and maintain.
Update : 2024-05-08 Size : 347136 Publisher : Lily

AKCMS是一款PHP(4/5)环境下的轻量级CMS,同时支持MySQL(3/4/5)和SQLite(2/3)。几乎可以这样说,只要是PHP空间,AKCMS就能运行!他体积小巧,只有不到300KB-AKCMS Lightweight CMS is a PHP (4/5) environments, supports both MySQL (3/4/5) and SQLite (2/3). Almost it can be said, as long as PHP space, AKCMS able to run! His small size, less than 300KB
Update : 2024-05-08 Size : 286720 Publisher : rmji
« 1 23 4 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.