create new sqlite Db

后端 未结 4 2170
被撕碎了的回忆
被撕碎了的回忆 2021-02-13 14:52

I am working on Mac OS X, I want to create a new SQLite DB, and I am using http://www.sqlite.org/quickstart.html as a reference.

I am entering: sqlite3 test.db

4条回答
  •  广开言路
    2021-02-13 15:34

    Because that is the administrative shell prompt. The shell created test.db and is now waiting for you to do something with it thus the sqlite> prompt you see.

    You may want to create table ... at this point.

提交回复
热议问题