I am trying to run some queries in my sqlite database after creating my application.
I tried;
<Exec Command='sqlite3 "@(DeployedSqliteDbPath) DELETE FROM BatchConfig";'/>
and
<Exec Command='sqlite3 "@(DeployedSqliteDbPath)";'/>
<Exec Command='sqlite3 "DELETE FROM BatchConfig";'/>
But that does not work. Can anyone help?
source
share