sqlite3 脚本制作

最近开发的程序,因为bd设计和需求更新问题。

需要对数据库进行修改。

因此有了脚本化 升级数据库的需求;

---

建立 .sh 文件 例如: updatedb.sh

里面写入命令:

sqlite3 xxx.db<<EOF

drop table if exists temp;
ALTER TABLE table_xx_name RENAME TO temp;
create table if not exists table_xx_name (xxxxxxxx);
insert into table_xx_name (_id,各个字段以逗号分割) select _id,选中字段以逗号分割 但是没有 括号 from temp;
drop table temp;

EOF

完成;

EOF 很重要 EOF 很重要  EOF 很重要


你可能感兴趣的:(sqlite3 脚本制作)