5

使用此代码:

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()”是行不通的,因为显然没有这样的方法。

4

2 回答 2

8

您正在过早地处置数据库(在事务内部)。最好将事情包装在“使用”语句中,这将处理数据库连接:

private void InsertPlatypiRequestedRecord(string platypusId, string platypusName, DateTime invitationSentLocal)
{
    using (var db = new SQLiteConnection(SQLitePath))
    {
        db.CreateTable<PlatypiRequested>();
        db.RunInTransaction(() =>
        {
            db.Insert(new PlatypiRequested
            {
                PlatypusId = platypusId,
                PlatypusName = platypusName,
                InvitationSentLocal = invitationSentLocal
            });
        });
    }
}
于 2012-12-20T03:34:38.473 回答
1
string connecString = @"Data Source=D:\SQLite.db;Pooling=true;FailIfMissing=false";       
/*D:\sqlite.db就是sqlite数据库所在的目录,它的名字你可以随便改的*/
SQLiteConnection conn = new SQLiteConnection(connectString); //新建一个连接
conn.Open();  //打开连接
SQLiteCommand cmd = conn.CreateCommand();

cmd.CommandText = "select * from orders";   //数据库中要事先有个orders表

cmd.CommandType = CommandType.Text;
using (SQLiteDataReader reader = cmd.ExecuteReader())
{
   while (reader.Read())
                Console.WriteLine( reader[0].ToString());
}

你可以在这里下载 System.Data.SQLite.dll

这是一篇关于csharp connect sqlite的中文文章

于 2012-12-20T02:43:53.397 回答