使用此代码:
public void InsertPlatypiRequestedRecord(string PlatypusId, string PlatypusName, DateTime invitationSentLocal)
{
var db = new SQLiteConnection(SQLitePath);
{
db.CreateTable<PlatypiRequested>();
db.RunInTransaction(() =>
{
db.Insert(new PlatypiRequested
{
PlatypusId = PlatypusId,
PlatypusName = PlatypusName,
InvitationSentLocal = invitationSentLocal
});
db.Dispose();
});
}
}
...我明白了,“ SQLite.SQLiteException 未被用户代码 HResult=-2146233088 消息处理=无法从未打开的数据库创建命令”
...但是尝试添加“db.Open()”是行不通的,因为显然没有这样的方法。