当前位置: 代码迷 >> 其他数据库 >> 【!求解!】怎么通过批处理文件进行创建sqlite数据表操作
  详细解决方案

【!求解!】怎么通过批处理文件进行创建sqlite数据表操作

热度:6242   发布时间:2013-02-26 00:00:00.0
【!!!求解!!!】如何通过批处理文件进行创建sqlite数据表操作
如何通过批处理文件进行创建sqlite数据表操作,
首先我已经把sqlite3.exe拷贝至windows目录下

C:\>sqlite3
SQLite version 3.6.20
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>

当我使用批处理命令的时候发现下列语句
Create TABLE admin(username text,age integer);
根本就是无法输入

求解呀!


------解决方案--------------------------------------------------------
R:\TEMP>sqlite3.exe dd.db
SQLite version 3.6.17
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table rr(id int);
  相关解决方案