Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 1.41 KB

README.md

File metadata and controls

10 lines (7 loc) · 1.41 KB

Abandoned

Unless I change my mind, I don't expect to come back to this project. It was created to solve the same problem as SQLitePCL.raw, but since most other libraries are wrapping that one, using this library alongside it can make for some troublesome dependency resolution. (Especially if you want to also use a different SQLite provider.) I created this project largely for:

  • My own experience with DLLImport and creating an open source library.
  • To help a company project where we had written a more idiomatic database connection API, and just needed the raw library access.

sqlite-native Build status NuGet Status

Lightweight C# wrapper around the native SQLite API. This does not provide any idiomatic C# API to make consuming a database feel at home in a .NET library. While those are nice, sometimes I've found it simpler in handling SQLite documentation to be able to map their API directly into your code. (It also means this can (in theory) stay up to date with SQLite releases by simply updating references.

Right now, this only includes native runtimes for Windows and UWP. iOS, Android, and beyond are planned.