Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用sqlite 时 如何 参数化插入blob数据 #10

Open
qq492269704 opened this issue Mar 18, 2023 · 2 comments
Open

使用sqlite 时 如何 参数化插入blob数据 #10

qq492269704 opened this issue Mar 18, 2023 · 2 comments

Comments

@qq492269704
Copy link

使用sqlite 时 如何 参数化插入blob数据

@zhuovi
Copy link
Owner

zhuovi commented Mar 20, 2023

byte[]类型

@zhuovi
Copy link
Owner

zhuovi commented Mar 20, 2023

使用sqlite 时 如何 参数化插入blob数据

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)
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants