我如何在执行任务 MSBUILD 中执行 sqlite (sqlite3) 语句?
How can i execute sqlite (sqlite3) statements in MSBUILD, the Exec Task?
我正在尝试 运行 在构建我的应用程序后对我的 sqlite 数据库进行一些查询。
我试过了;
<Exec Command='sqlite3 "@(DeployedSqliteDbPath) DELETE FROM BatchConfig";'/>
和
<Exec Command='sqlite3 "@(DeployedSqliteDbPath)";'/>
<Exec Command='sqlite3 "DELETE FROM BatchConfig";'/>
但是好像不行。有人可以帮忙吗?
这有效;
<Exec Command='sqlite3 "@(DeployedSqliteDbPath)" "DELETE FROM BatchConfig;"'/>
我正在尝试 运行 在构建我的应用程序后对我的 sqlite 数据库进行一些查询。
我试过了;
<Exec Command='sqlite3 "@(DeployedSqliteDbPath) DELETE FROM BatchConfig";'/>
和
<Exec Command='sqlite3 "@(DeployedSqliteDbPath)";'/>
<Exec Command='sqlite3 "DELETE FROM BatchConfig";'/>
但是好像不行。有人可以帮忙吗?
这有效;
<Exec Command='sqlite3 "@(DeployedSqliteDbPath)" "DELETE FROM BatchConfig;"'/>