在提示符下创建sqlite3数据库

前端之家收集整理的这篇文章主要介绍了在提示符下创建sqlite3数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用以下命令在提示符下创建数据库文件,但没有一个可以正常工作.
$sqlite3 test.db
sqlite3 test.db
test.db

是否需要结尾分号或使用sqlite3提示创建数据库文件难度?

编辑:

当我启动sqlite3提示时,我得到

sqlite version 3.6.22
Enter ".help" for instructions
Enter sql statements terminated with a ";"
sqlite>

当我输入“sqlite3 test.db”时,

sqlite version 3.6.22
Enter ".help" for instructions
Enter sql statements terminated with a ";"
sqlite> sqlite3 test.db
   ...>

磁盘上应该是test.db文件

如果你想要一个空白的.db文件,只需使用:
touch stuff.db
原文链接:https://www.f2er.com/sqlite/197789.html

猜你在找的Sqlite相关文章