SQLiteDB_dotNET 1.0.1
dotnet add package SQLiteDB_dotNET --version 1.0.1
NuGet\Install-Package SQLiteDB_dotNET -Version 1.0.1
<PackageReference Include="SQLiteDB_dotNET" Version="1.0.1" />
paket add SQLiteDB_dotNET --version 1.0.1
#r "nuget: SQLiteDB_dotNET, 1.0.1"
// Install SQLiteDB_dotNET as a Cake Addin #addin nuget:?package=SQLiteDB_dotNET&version=1.0.1 // Install SQLiteDB_dotNET as a Cake Tool #tool nuget:?package=SQLiteDB_dotNET&version=1.0.1
The SQLiteDB_dotNET Class Library is a high level wrapper around the SQLite.
Example: using SQLiteDB;
string connString = "db/demo.sqlite"; // or //string connString = "Data Source=" + database + ";Version=3;New=True;Compress=True;"; // local
DBConnection db_conn = new DBConnection(connString); if (db_conn == null || !db_conn.isConnected()) { MessageBox.Show("Connessione non valida."); }
string sql = "SELECT * FROM users;";
DataTable dtProds = db_conn.SelectTable(sql); if (dtProds == null || dtProds.HasErrors || dtProds.Rows.Count == 0) return;
// Loop with the foreach keyword. foreach (DataRow dr in dtProds.Rows) { //... }
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- System.Data.SQLite (>= 1.0.109.2)
- System.Data.SQLite.Core (>= 1.0.109.2)
- System.Data.SQLite.EF6 (>= 1.0.109)
- System.Data.SQLite.Linq (>= 1.0.109)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Extensions on the SQLiteDB .NetFramework.