このコードの使用:
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 Message=Cannot create commands from unopened database」
...しかし、「db.Open()」を追加しようとしても機能しません。そのようなメソッドが明らかに存在しないためです。