我正在使用Mono,SQLite,Dapper&精致的扩展。我可以从数据库中读取但是Insert不起作用。我正在使用Mono Driver for sqlite。
错误不是很有用,至少对我而言。任何帮助将不胜感激。
错误:
SQLite error
near ".": syntax error
at Mono.Data.Sqlite.SQLite3.Prepare (Mono.Data.Sqlite.SqliteConnection cnn, System.String strSql, Mono.Data.Sqlite.SqliteStatement previous, UInt32 timeoutMS, System.String& strRemain) [0x00000] in <filename unknown>:0
at Mono.Data.Sqlite.SqliteCommand.BuildNextCommand () [0x00000] in <filename unknown>:0
测试代码:
public void can_add_a_service_record()
{
var provider = new Provider { Name = "Hotmail" };
int id = providerData.Insert(provider);
Assert.AreEqual("Hotmail", providerData.Get(id).Name);
}
插入代码如下。
public virtual int Insert (TEntity entity)
{
var connection = SqlHelper.GetConnection();
int id = connection.Insert<TEntity>(entity);
connection.Close();
return id;
}
由于
Chirdeep
答案 0 :(得分:1)
对我而言,这看起来像Dapper Extensions问题,而不是Dapper问题。特别是,我看不到实现的Sqlite方言:https://github.com/tmsmith/Dapper-Extensions/tree/master/DapperExtensions/Sql。
要解决我建议您提交Dapper Extensions项目的补丁(与Dapper完全分开)或在Dappe上使用不同的包装,或使用没有包装器的Dapper。
例如,以下内容应该有效:
var id = cnn.Query<int>("insert cars values(@name); select last_insert_rowid()",
new {name = "bmw"});