我有一个名为schema.sql的文件,如下所示:
drop table if exists codes;
create table paste_codes (
id integer primary key autoincrement,
codetitle string not null,
codebody string not null,
pub_date string not null
)
有什么方法可以让 sqlite3 从这个文件中读取它并为我创建数据库?cat schema.sql > sqlite3 /tmp/database.db 之类的东西?
谢谢