pub trait FirebirdClientDbOps: Send {
    type DbHandle: Send;
    type AttachmentConfig: Send + Clone;

    fn attach_database(
        &mut self,
        config: &Self::AttachmentConfig
    ) -> Result<Self::DbHandle, FbError>; fn detach_database(
        &mut self,
        db_handle: &mut Self::DbHandle
    ) -> Result<(), FbError>; fn drop_database(
        &mut self,
        db_handle: &mut Self::DbHandle
    ) -> Result<(), FbError>; fn create_database(
        &mut self,
        config: &Self::AttachmentConfig,
        page_size: Option<u32>
    ) -> Result<Self::DbHandle, FbError>; }
Expand description

Responsible for database administration and attachment/detachment

Required Associated Types

A database handle

Configuration details for attaching to the database. A user of an implementation of this trait can configure attachment details (database name, user name, etcetera) and then pass this configuration to the implementation via this type when a new attachment is requested

Required Methods

Create a new attachment to a database with the provided configuration Returns a database handle on success

Disconnect from the database

Drop the database

Create the database and attach Returns a database handle on success

Implementors