bulk datatable insert in Sqlite database?
For further actions, you may consider blocking this person and/or reporting abuse
bulk datatable insert in Sqlite database?
For further actions, you may consider blocking this person and/or reporting abuse
Odumosu Matthew -
Leandro Veiga -
Seena Khan -
mohamed Tayel -
Top comments (3)
Using which library?
System.Data.SQLite library
I don't know the specifics of that library. I tend to use SQLite raw (direct native calls). You can batch up an insert this way.
You have to bind all the parameters and then execute it. Are you referring to a literal C#
DataTable
?