You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ Use one of these packages:
10
10
|[](https://www.nuget.org/packages/sqlite-net-pcl)|[sqlite-net-pcl](https://www.nuget.org/packages/sqlite-net-pcl)| .NET Standard Library |
11
11
|[](https://www.nuget.org/packages/sqlite-net-sqlcipher)|[sqlite-net-sqlcipher](https://www.nuget.org/packages/sqlite-net-sqlcipher)| With Encryption Support |
12
12
|[](https://www.nuget.org/packages/sqlite-net-static)|[sqlite-net-static](https://www.nuget.org/packages/sqlite-net-static)| Special version that uses P/Invokes to platform-provided sqlite3 |
13
+
|[](https://www.nuget.org/packages/sqlite-net-base)|[sqlite-net-base](https://www.nuget.org/packages/sqlite-net-base)| wothout a SQLitePCLRaw bundle so you can choose your own provider |
13
14
14
15
SQLite-net is an open source, minimal library to allow .NET, .NET Core, and Mono applications to store data in
15
16
[SQLite 3 databases](http://www.sqlite.org). It was first designed to work with [Xamarin.iOS](http://xamarin.com),
@@ -33,7 +34,7 @@ Install [sqlite-net-pcl](https://www.nuget.org/packages/sqlite-net-pcl) from NuG
33
34
34
35
## Source Installation
35
36
36
-
SQLite-net is all contained in 1 file (I know, so cool right?) and is easy to add to your project. Just add [SQLite.cs](https://github.com/praeclarum/sqlite-net/blob/master/src/SQLite.cs) to your project, and you're ready to start creating tables.
37
+
SQLite-net is all contained in 1 file (I know, so cool right?) and is easy to add to your project. Just add [SQLite.cs](https://github.com/praeclarum/sqlite-net/blob/master/src/SQLite.cs) to your project, and you're ready to start creating tables. An asynchronous implementation can be found in [SQLiteAsync.cs](https://github.com/praeclarum/sqlite-net/blob/master/src/SQLiteAsync.cs).
0 commit comments