Module sqlite_requests::request[][src]

Enums

SqliteExecute

A single SQLite statement or a series of them. A statement is a SQL-Request which can modify the DB and requires ReadWrite access to be run, e.g. everything but a query.

SqliteExecuteResponse
SqliteQuery

A single SQLite query or a series of them. A query is a SQL-Request which can't modify the DB and requires ReadOnly access to be run, e.g. a SELECT statement.

SqliteQueryResponse
SqliteRequest

Every possible SQLite request. Used as a serialization root point for transferring or persisting SQLite requests.

SqliteResponse

Every possible response when executing variants of SqliteRequest. Used as a serialization root point for transferring or persisting SQLite responses.