Skip to main content

Crate nextsql_backend_rust_runtime

Crate nextsql_backend_rust_runtime 

Source

Modules§

tokio_postgres_impl

Enums§

UpdateField
Represents a field in a partial update operation.

Traits§

Client
Trait for executing SQL queries against a database connection. Extends QueryExecutor with transaction management.
QueryExecutor
Common trait for executing SQL queries, shared by both Client and Transaction.
Row
Trait for reading typed values from a database result row.
ToSqlParam
Trait for values that can be bound as SQL query parameters.
Transaction
Trait for a database transaction. Extends QueryExecutor with commit/rollback and nested transaction (savepoint) support. Dropping without calling commit() should rollback the transaction.