I am trying to use SQLite3 in C # .NET. I googled around and found several different APIs. I also checked the SQLite site for wrappers. I like them, but I want to write my own shell without using the added dependency. All the wrappers that I discovered do not require additional dependency, are not free.
I am wondering how you can read, execute and write to sqlite3 database. Is this a socket connection (tcp? Udp? Etc.?)? I tried looking for this answer on Google, and all I get is answers to specific libraries.: / SQLite site docs don't help much.
EDIT: I also found a COM interface while searching the web, but is this a specific library?
Thanks!:)
source
share