You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var data = new DataHelper(new ConnectionConfig("Data Source={/}/AppData/FayElf.Cube.Admin.db3;Version=3;Cache Size=5000;Pooling=False;Max Pool Size=100;", DbProviderType.SQLite));
var val1 = "a";
var val2 = new byte[] { 10, 10, 10, 10, 0, 10, 10 };
data.ExecuteNonQuery("insert into tbname(a,b) values(@A,@b);", System.Data.CommandType.Text, new DbParameter[]
{
data.MakeParam("@A",val1,System.Data.DbType.String),
data.MakeParam("@b",val2,System.Data.DbType.Binary)
});
使用sqlite 时 如何 参数化插入blob数据
The text was updated successfully, but these errors were encountered: