ChinaUnix.net
相关文章推荐:

sqlite嵌入式编程

嵌入式数据库sqlite与Java sqlite作为一个开源的嵌入式数据库产品,具有系统开销小,检索效率高的特性,适用于手机、PDA、机顶盒设备等电器,并且作为嵌入式数据库在可下载的消费类应用程序中运行的很好。这篇文章介绍嵌入式数据库产品sqlite的技术特点,并着重讨论研究与Java语言之间的接口,并以实例说明如何使用JAVA开发基于sqlite的应用程序。 通常我们采用各种数据库产品来实现对数据的存储、检索等功能,例如,Oracle,SQL S...

by liuxingyuyuni - Java文档中心 - 2007-04-28 13:49:58 阅读(1444) 回复(0)

相关讨论

我已经交叉编译了一个可以在ARM上运行的数据库sqlite,放在挂载在开发板上的目录下,已经在开发板上可以运行(命令行运行过),现在我写了个本地访问的程序,如下: #include #include #include "sqlite.h" #define sqlite_OK 0 /*typedef struct sqlite sqlite;*/ int callback(void *datarow,int num_fields,char * * p_fields,char * * p_col_names) {int i; int *p_rn=(int *)datarow; /* (p_rn)++;*/ for(i...

by fuxinrong - 程序开发 - 2006-04-25 01:55:37 阅读(1242) 回复(2)

sqlite3更新列数不确定要怎么编程 update tablename set ...(列数量不确定) where id=n; 在Linux下用C语言编程

by reer - C/C++ - 2009-01-24 12:56:27 阅读(1768) 回复(5)

模块接口 connect(parameters...) 其中的参数格式如下: dsn 数据源名称 user 用户名(可选) password 密码(可选) host 主机名(可选) database 数据库名(可选) 举个例子: connect(dsn='myhost:MYDB',user='guido',password='234 此标准规定了以下的一些全局变量: apilevel: 表示了DB-API的版本,分'1.0'和'2.0'.如果没有定义,默认为'1.0' threadsafety: 0 Threads may not share the module. 1 Threads ma...

by marlboro027 - Python文档中心 - 2007-04-05 02:27:29 阅读(1141) 回复(0)

文件: sqliteadmin.zip 大小: 2147KB 下载: 下载 java sqlite sql 图形管理工具 文件: sqlitejdbc.rar 大小: 179KB 下载: 下载 org site : http://www.zentus.com/sqlitejdbc/ 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/10599/showart_304433.html

by liuxingyuyuni - Java文档中心 - 2007-05-19 01:18:08 阅读(792) 回复(0)

bind-9.7.0a2.tar.gz+sqlite-3.6.17.tar.gz+openssl-0.9.8k.tar.gz

by atyu30 - 服务器应用 - 2009-08-24 15:52:57 阅读(2380) 回复(2)

我现在我的红帽子linux上安装了Apache和sqlite2.8版本的软件后在应该如何让php也能对sqlite进行数据库操作,我看了在sqlite的帮助文档中有对sqlite3的支持,对sqlite2的支持如何进行?在线等哈

by 浩海 - PHP - 2009-06-30 11:14:38 阅读(2027) 回复(4)

I began learning Python this spring, and I must say, the more I program in it the more I like it. I chose the language because of the libraries that are available for it. There is a library for everything. :) Also, there are tools for Natural Language Processing that are a great help, but that’s for another time and another post. I was originally thinking about using Postgres, and it would pro...

by cobrawgl - Python文档中心 - 2009-04-06 17:13:34 阅读(1894) 回复(0)

记录一下自己开发 ezsqliteAdmin 时所掌握的sqlite资料。 sqlite内建语法表 结构定义 CREATE TABLE 创建新表。 语法: sql-command ::= CREATE [TEMP | TEMPORARY] TABLE table-name ( column-def [, column-def]* [, constraint]* ) sql-command ::= CREATE [TEMP | TEMPORARY] TABLE [database-name.] table-name AS select-statement column-def ::= name [type] [[CONSTRAINT name] column-constraint]* type ::= ty...

by militala - MySQL文档中心 - 2008-12-31 17:06:45 阅读(1465) 回复(0)