我正在使用Mac OS X,我想创建一个新的SQLite数据库,我使用http://www.sqlite.org/quickstart.html作为参考.
我正在进入:sqlite3 test.db
并得到答复:
SQLite version 3.6.12 Enter ".help" for instructions Enter SQL statements terminated with a ";"
为什么会这样?
有效.退出并测试 - 数据库已创建.
你现在在SQLite的外壳,它已准备好接收命令一样CREATE TABLE...
,INSERT INTO...
等等.
如果您不想使用交互式shell,可以直接从命令行构建架构:
sqlite3 test.db "CREATE TABLE ..."
或者只是创建一个没有架构的空数据库:
sqlite3 test.db ""
但这与创建一个空文件一样,无论如何:
touch test.db
因为这是管理shell提示符.shell创建了test.db,现在正在等待你对它做一些事情,从而得到sqlite>
你看到的提示.
你可能想要create table ...
在这一点上.