Sqlite3提示`…>`而不是`sqlite>`

前端之家收集整理的这篇文章主要介绍了Sqlite3提示`…>`而不是`sqlite>`前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在关注sqlite3的初学者教程.第一步是创建一个新的数据库.所以我输入一个名字(movies.db).

我期待得到另一个sqlite>提示在下一行,并继续教程,而是我得到一个跛脚…>之后我可以打我想要的任何吉卜赛.显然,这不好.

我的命令提示符如下所示:

sqlite version 3.8.1 2013-10-17 12:57:35
Enter ".help" for instructions
Enter sql statements terminated with a ";"
sqlite> $sqlite3 movies.db
   ...> gibberish
   ...> dsds
   ...> sdada
   ...> gfgys
   ...> a
   ...> Aaaaarrrgh!
   ...>

如何让sqlite3正常工作?

赦免我的新手我希望我能用这个方法来表达这个问题.

sqlite正常工作.但是,sqlite movies.db命令应该从您的系统命令行发出 – 而不是从sqlite交互式shell发出.从退出sqlite交互式shell(.exit)开始,然后发出数据库创建命令.

根据quickstart documentation

  1. At a shell or DOS prompt,enter: “sqlite3 test.db”. This will create a new database named “test.db”. (You can use a different name if you like.)

  2. Enter sql commands at the prompt to create and populate the new database.

一旦从系统命令行正确执行sqlite movies.db命令,您将自动将其放在sqlite交互式shell中,这将等待命令.

sqlite> create table tbl1(one varchar(10),two smallint);

…> shell提示符表示从前一行的连续.如消息中所示,您将需要使用a终止每个数据库命令;分号.

sqlite> CREATE TABLE tbl2 (
   ...>   f1 varchar(30) primary key,...>   f2 text,...>   f3 real
   ...> );
sqlite>

猜你在找的Sqlite相关文章