sqlite3 – 创建新的sqlite Db

前端之家收集整理的这篇文章主要介绍了sqlite3 – 创建新的sqlite Db前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在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 ";"

为什么会发生这种情况?

因为这是管理shell提示符. shell创建了test.db,现在正在等待你做某事,因此sqlite>提示你看.

此时可能需要创建表…

原文链接:https://www.f2er.com/sqlite/197800.html

猜你在找的Sqlite相关文章