GHIElectronics.TinyCLR.Data.SQLite
NuGet package containing 6 types.
Classes
| Class | Namespace | Summary |
|---|---|---|
| OpenException | GHIElectronics.TinyCLR.Data.SQLite | Thrown when a database file cannot be opened. |
| QueryExecutionException | GHIElectronics.TinyCLR.Data.SQLite | Thrown when SQLite returns an error during query execution. |
| QueryFinalizationException | GHIElectronics.TinyCLR.Data.SQLite | Thrown when SQLite fails to finalize (release) a prepared statement. |
| QueryPrepareException | GHIElectronics.TinyCLR.Data.SQLite | Thrown when SQLite cannot prepare (compile) a query. |
| ResultSet | GHIElectronics.TinyCLR.Data.SQLite | Result of a SQL SELECT — rows × columns plus column-name metadata. Index by this[row] for an ArrayList of cells in that row, or this[row, column] for an individual cell. |
| SQLiteDatabase | GHIElectronics.TinyCLR.Data.SQLite | SQLite database handle. Open an in-memory database with the parameterless constructor or a file-backed database via the path constructor. Use ExecuteNonQuery for inserts/updates and ExecuteQuery for SELECTs that return a ResultSet. |