Sqlite Module
Convenience helpers that mirror the named-parameter factory members of SqliteDriver but expose plain F# functions rather than static members. Prefer these from F# call sites.
Functions and values
| Function or value |
Description
|
Full Usage:
Sqlite.openConnectionString connectionString
Parameters:
string
Returns: SqliteDriver
|
Opens a driver from an ADO.NET connection string. The driver owns the connection.
|
|
|
|
|
Full Usage:
Sqlite.wrapConnection connection
Parameters:
SqliteConnection
Returns: SqliteDriver
|
Wraps an existing SqliteConnection. The driver does not own the connection.
|
ProcessCore