我们的应用程序使用Windows上的SQLite数据库
C:\ Users \ Administrator \ dbFile.db
我们要从批处理文件向表中插入一行
INSERT INTO "Table1" ("Property1","Property2","Property3") VALUES("Value1","Value2","Value3");
如何编写批处理文件以在Sqlite数据库上运行此查询。
答案 0 :(得分:0)
使用您提供的命令创建文本文件,在本示例中,我将其设置为myfile.txt
:
INSERT INTO "Table1" ("Property1","Property2","Property3") VALUES("Value1","Value2","Value3");
然后执行为:
sqlite dbFile.db < myfile.txt