Struct marine_sqlite_connector::Connection[][src]

pub struct Connection { /* fields omitted */ }
Expand description

A database connection.

Implementations

Open a read-write connection to a new or existing database.

Open a database connection with specific flags.

Execute a statement without processing the resulting rows if any.

Execute a statement and process the resulting rows as plain text.

The callback is triggered for each row. If the callback returns false, no more rows will be processed. For large queries and non-string data types, prepared statement are highly preferable; see prepare.

Create a prepared statement.

Return the number of rows inserted, updated, or deleted by the most recent INSERT, UPDATE, or DELETE statement.

Return the total number of rows inserted, updated, and deleted by all INSERT, UPDATE, and DELETE statements since the connection was opened.

Set an implicit callback for handling busy events that tries to repeat rejected operations until a timeout expires.

Return the raw pointer.

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.