环境变量啥的我就不说了,大家自己设好。
sqlite> .exte 退出SQLITE编辑环境。
建立数据库,地址由命令所在级点而定:root@hjm-H61M-DS2:~# sqlite3 mydb.db
建一张t_student表,自增长主键:sqlite> create tablet_student(sid INTEGER primary key autoincrement, snamevarchar(20));
插入一条数据: sqlite> insert into t_student(sid,sname)values (1,'coolszy');
查询和普通的一样:sqlite> select sid,snamefrom t_student;
sqlite> .exte 退出SQLITE编辑环境。
建立数据库,地址由命令所在级点而定:root@hjm-H61M-DS2:~# sqlite3 mydb.db
建一张t_student表,自增长主键:sqlite> create tablet_student(sid INTEGER primary key autoincrement, snamevarchar(20));
插入一条数据: sqlite> insert into t_student(sid,sname)values (1,'coolszy');
查询和普通的一样:sqlite> select sid,snamefrom t_student;