我有两个问题。
如何让 SQLite Db 存储数据?数据库已创建,我可以在其 FilePath 位置找到数据库,但我从未看到任何数据。
如何更改位置以将数据保存在本地文件夹中,而不是用户... appdata 文件夹中?
这是我的代码:
Database db = new Database(Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path,"alpha2.db"));
// Database db = new Database("c:\\Projects\\alpha2.db");
Statement stm;
stm = db.PrepareStatement("CREATE TABLE IF NOT EXISTS person(id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, age INTEGER, data BLOB)");
stm.Execute();
stm.Dispose();
stm=db.PrepareStatement("INSERT INTO person(name,age VALUES(?,?)");
stm.BindParamText(1,"John Doe");
stm.BindParamInt(2,35);
stm.Execute();
stm.Dispose();
long insertRowId = db.LastInsertRowId;
stm=db.PrepareStatement("SELECT * FROM person");
while(stm.GetNextRow())
{
int id=stm.GetIntAt(0);
string name=stm.GetTextAt(1);
textBlock1.Text=name.ToString();
}
stm.Dispose();
db.Dispose();
TIA,这已经是两天的头疼了。