0

我正在尝试在我的 windows 7 64 位机器上创建一个 sqlite3 数据库。我已经从http://www.sqlite.org/download.html下载了 sqlite-shell-win32-x86-3071502 。从已安装的文件夹运行 sqlite3.exe 后,我运行以下命令:

sqlite3 mytest.db;

但我收到“错误:靠近“sqlite3”:语法错误”。

任何帮助是极大的赞赏。

谢谢

4

1 回答 1

4

我猜你在 sqlite shell 中输入了命令(见下文)

sqlite> sqlite3 mytest.db;
Error: near "sqlite3": syntax error

您收到错误是因为它不是有效的 sqlite 命令。如果您正在创建一个名为 mytest.db 的数据库,请尝试在 Windows 命令提示符中输入该命令,然后您将处于 sqlite shell 环境中。要找出所有支持的命令,请在 sqlite shell 中输入 .help。

D:\sqlite> sqlite3 mytest.db
SQLite version 3.6.23
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .help
于 2013-03-10T06:07:58.550 回答