SQLite

官方主页: http://www.sqlite.org/

总体介绍: http://langzi0115.bokee.com/6905346.html

数据类型: http://blog.csdn.net/jin868/article/details/5961263
http://hi.baidu.com/2010haiyang/blog/item/941e000b7d528dc863d9864c.html
主键问题: http://www.cnblogs.com/zhw511006/archive/2010/09/08/1821596.html



    sqlite3_auto_extension
    sqlite3_callback
    sqlite3_changes
    sqlite3_open
    sqlite3_close
    sqlite3_shutdown

    sqlite3_aggregate_xxx
    sqlite3_backup_xxx
    sqlite3_bind_xxx
    sqlite3_clear_bindings
    sqlite3_blob_xxx
    sqlite3_busy_xxx
    sqlite3_collation_needed
    sqlite3_column_xxx
    sqlite3_create_xxx
    sqlite3_db_xxx



建库
开、关库
建表

修改表结构
http://phponline.blog.hexun.com/24941113_d.html
//sqlite不支持修改表结构,只能曲折处理,先创建一个新表,数据再转移过去。

create table file (
file varchar(50) not null unique primary key,
md5 varchar(32) not null,
size integer(10),
mtime integer(10)
)

insert into file select * from file_new;
创建备份表也可以用这个命令
create table file_bk as select * from file;
不过,创建出来的表恐怕和你期待的有所区别。

你可能感兴趣的:(sqlite)