摘要:
sqlite-error处理 ubuntu下sqlite安装 使用./configure make make istall安装后, 命令行输入sqlite3,回车,出现:SQLite header and source version mismatch 错误提示 处理办法:http://blog.csdn.net/gebitan505/article/details/19982077 sqlite... 阅读全文
摘要:
SQL语句格式 sql的指令格式:所有sql指令都是以分号(;)结尾,两个减号(--)则表示注释。 如: sqlite>create studen_table( \ Stu_no interger PRIMARY KEY, \ Name text NOT NULL,\ Id interger UNIQUE,... 阅读全文
摘要:
sqlite3_exec用法原型: int sqlite3_exec( sqlite3* ppDb, /* An open database */ const char *sql, /* SQL to be evaluated */ int (*callback)(void*,i... 阅读全文