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
Join AWS GenAI LIVE! to find out how gen AI is reshaping productivity, streamlining processes, and driving innovation.
Bob Cars(on) -
Jordan Knightin -
ashu-commits -
Zhang Wei -
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
?