0

我可以在 shell 提示符下打开 sqlite db:

sqlite3 test.db 

当我输入 sqlite3 进入 sqlite 环境时,如何在 sqlite 提示符下打开 test.db?

输入是没有用的

~$ sqlite3
SQLite version 3.7.13 2012-06-11 02:05:22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> sqlite3 test.db 
4

1 回答 1

0

这些sqlite3工具总是打开作为参数给出的数据库文件。如果没有文件名,它将打开一个随机名称的临时数据库。

之后无法更改数据库。

于 2012-09-22T07:42:57.273 回答