sqlite3支持的数据类型:
NULL、INTEGER、REAL、TEXT、BLOB
但是,sqlite3也支持如下的数据类型 smallint 16位整数 integer 32位整数 decimal(p,s) p是精确值,s是小数位数 float 32位实数 double 64位实数 char(n) n长度字符串,不能超过254 varchar(n) 长度不固定最大字符串长度为n,n不超过4000 graphic(n) 和 char(n) 一样,但是单位是两个字符double-bytes,n不超过127(中文字) vargraphic(n) 可变长度且最大长度为n date 包含了年份、月份、日期 time 包含了小时、分钟、秒 timestamp 包含了年、月、日、时、分、秒、千分之一秒sqlite3支持的函数【1】日期函数
datetime() : 产生日期和时间
date(): 产生日期 time():产生时间 strftime():对以上3个函数产生的日期和时间进行格式化 用法实例: 1、SELECT date('2011-9-9','+1 day','+1 year'); 结果是 2010-09-10 2、SELECT datetime('now'); 当前日期和时间 3、SELECT datetime('now', 'start of month'); 本月的第一天零点,也可以设置年和日的第一天 4、SELECT datetime('now','+1 hour','-12 minute'); 当前时间加48分钟strftime()函数可以将YYYY-MM-DD HH:MM:SS格式的日期字符串转换为其它形式的字符串%d:天数,01-31 %f :小数形式的秒,SS.SSS %H:小时 %j :某一天是该年的第几天,001-366 %m:月份,00-12 %M:分钟,00-59 %s:从1970到现在的秒数 %S:秒,00-59 %w:星期,0-6,0是星期天 %W:某天是该年的第几周,01-53 %Y:年,YYYY %% 百分号 应用举例: SELECT strftime('%Y.%m.%d %H:%M:%S','now','localtime');
二、【算术函数】 abs(X):返回绝对值 max(X,Y[,...]):返回最大值 min(X,Y,[,...]):返回最小值 random(*):返回随机数 round(X[,Y]): 四舍五入三、【字符串处理函数】 length(x) :返回字符串字符个数 lower(x) :大写转小写 upper(x):小写转大写 substr(x,y,Z):截取子串 like(A,B):确定给定的字符串与指定的模式是否匹配四、【条件判断函数、集合函数、其它函数】 typeof(x):返回数据的类型 last_insert_rowid():返回最后插入的数据的ID********************************************************************************************************************
sqlite3提供了C函数接口来操作sqlite3数据库,其中有个关键数据结构 sqlite3 * 类型
1、打开数据库int sqlite3_open(文件名,sqlite3 **); - 文件名若不存在,则会自动创建
返回SQLITE_OK表示操作正常,这些宏的定义在sqlite3.h文件中定义,看源代码会懂的更多2、关闭数据库int sqlite3_close(sqlite3 *);3、SQL语句操作int sqlite3_exec(sqlite3 *,const char *sql, sqlite3_callback,void *,char **errmsg); 这就是执行一条sql语句的函数 参数1:open函数得到的指针 参数2:一条sql语句,以'\0'结尾 参数3:sqlite3_callback是回调,当这条语句执行后,sqlite3会调用你提供的这个函数,回调函数要查阅资料 参数4:void *是自己提供的指针,可以传递任何指针到这里,这个参数最终会传到回调函数里面,如果不需要 传到回调函数里面,则可以设置为NULL 参数5:错误信息,当执行失败时,可以查阅这个指针,可以利用printf("%s\n",errmsg)得到一串字符串信息, 该信息表明出错的地方通常,sqlite3_callback和void *都设置为NULL,表示不需要回调,比如做insert、delete操作,就没有必要使用回调,而当使用select时,就要使用回调,因为sqlite3把数据查出来,得通过回调来说明查出什么数据 回调函数的定义格式: typedef int (*sqlite3_callback)(void *,int,char **,char **); 实例如下:- //sqlite 每查到一条记录,就调用一次这个回调
- int LoadMyInfo(void *para,int n_column,char **column_value,char **column_name)
- {
- /*para: 在sqlite3里传入的void *参数,通过该参数可以传入一些特殊指针
- *如类指针、结构指针,然后在这里转换成对应的类型(这里是void *类型),
- *必须强制转换成自己的类型才可用,然后操作这些数据*/
- //n_column: 该记录有多少个字段(列)
- /*char **column_value 保存着查出来的数据,实际上是个1维数组,每一个元素都是
- *char *值,是一个字段内容(用字符串表示,以\0结尾)*/
- //char **column_name 与 column_value 是对应的,表示这个字段的字段名称
- //这里不是用para参数
- printf("%=记录包含%d\n个字段",n_column);
- for(i=0;i<n_column;i++)
- {
- printf("字段名: %s ,字段值:%s\n",column_name[i],column_value[i]);
- }
- printf("\n");
- return 0;
- }
- int main(int , char **)
- {
- sqlite3 *db;
- int result;
- char *errmsg = NULL;
- char sql[512];
- result = sqlite3_open("My.db",&db);
- if(result != SQLITE_OK)
- {
- //数据库打开失败
- return -1;
- }
- //创建数据表
- strcpy(sql,"CREATE TABLE test(ID INTEGER PRIMARY KEY,NAME VARCHAR(32));");
- result = sqlite3_exec(db,sql,NULL,NULL,errmsg);
- if(result != SQLITE_OK)
- {
- printf("创建表失败,错误:%s\n",errmsg);
- }
- //插入记录
- strcpy(sql,"INSERT INTO test VALUES(1,'OK');");
- result = sqlite3_exec(db,sql,0,0,errmsg);
- if(result != SQLITE_OK)
- {
- printf("插入记录失败,错误:%s\n",errmsg);
- }
- //查询数据库
- strcpy(sql,"SELECT * FROM test;");
- result = sqlite3_exec(db,sql,LoadMyInfo,NULL,errmsg);
- sqlite3_close(db);
- return 0;
- }
以上是通过回调查询数据库,如果该函数在C++中,就要将其声明成static类型,因为C++
成员函数隐藏了一个参数:this,C++调用类的成员函数的时候,隐含把类指针当函数的第 一个参数传递进去,就与上面的sqlite回调函数参数不符 除了使用回调来查询,还可以使用非回调的查询,通过sqlite3_get_table函数做到 int sqlite3_get_table(sqlite3*,const char *sql,char ***resultp,int *nrow,int *ncolumn,char **errmsg); 参数3:resultp 是一维数组,第一行是字段名称,跟着是每个字段的值 参数4:查询共多少条记录 参数5:查询共多少个字段 操作实例如下:- int main(int ,char **)
- {
- sqlite3 *db;
- int result;
- char *errmsg = NULL;
- char **dbResult;
- int nRow,nColumn;
- int i,j;
- int index;
- char sql[512];
- result = sqlite3_open("My.db",&db);
- if(result != SQLITE_OK)
- {
- return -1;
- }
- result = sqlite3_get_table(db,sql,&dbResult,&nRow,&nColumn,&errmsg);
- //查询成功
- if(SQLITE_OK == result)
- {
- //dbResult第一行是字段名称,从nColumn索引开始时真正的数据
- index = nColumn;
- printf("查询到%d记录\n",nRow);
- for(i=0;i<nRow;i++)
- {
- for(j=0;j<nColumn;j++)
- {
- printf("字段名称:%s,字段值:%s\n",dbResult[j],dbResult[index]);
- index++;
- }
- printf("\n");
- }
- }
- //释放char**查询结果
- sqlite3_free_table(dbResult);
- sqlite3_close(db);
- return 0;
- }
sqlite3 错误编码如下:
- #define SQLITE_OK 0 /* Successful result */
- #define SQLITE_ERROR 1 /* SQL error or missing database */
- #define SQLITE_INTERNAL 2 /* An internal logic error in SQLite */
- #define SQLITE_PERM 3 /* Access permission denied */
- #define SQLITE_ABORT 4 /* Callback routine requested an abort */
- #define SQLITE_BUSY 5 /* The database file is locked */
- #define SQLITE_LOCKED 6 /* A table in the database is locked */
- #define SQLITE_NOMEM 7 /* A malloc() failed */
- #define SQLITE_READONLY 8 /* Attempt to write a readonly database */
- #define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite_interrupt() */
- #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */
- #define SQLITE_CORRUPT 11 /* The database disk p_w_picpath is malformed */
- #define SQLITE_NOTFOUND 12 /* (Internal Only) Table or record not found */
- #define SQLITE_FULL 13 /* Insertion failed because database is full */
- #define SQLITE_CANTOPEN 14 /* Unable to open the database file */
- #define SQLITE_PROTOCOL 15 /* Database lock protocol error */
- #define SQLITE_EMPTY 16 /* (Internal Only) Database table is empty */
- #define SQLITE_SCHEMA 17 /* The database schema changed */
- #define SQLITE_TOOBIG 18 /* Too much data for one row of a table */
- #define SQLITE_CONSTRAINT 19 /* Abort due to contraint violation */
- #define SQLITE_MISMATCH 20 /* Data type mismatch */
- #define SQLITE_MISUSE 21 /* Library used incorrectly */
- #define SQLITE_NOLFS 22 /* Uses OS features not supported on host */
- #define SQLITE_AUTH 23 /* Authorization denied */
- #define SQLITE_ROW 100 /* sqlite_step() has another row ready */
- #define SQLITE_DONE 101 /* sqlite_step() has finished executing */