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§

source

type DbHandle: Send

A database handle

source

type AttachmentConfig: Send + Clone

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§

source

fn attach_database(
    &mut self,
    config: &Self::AttachmentConfig
) -> Result<Self::DbHandle, FbError>

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

source

fn detach_database(
    &mut self,
    db_handle: &mut Self::DbHandle
) -> Result<(), FbError>

Disconnect from the database

source

fn drop_database(
    &mut self,
    db_handle: &mut Self::DbHandle
) -> Result<(), FbError>

Drop the database

source

fn create_database(
    &mut self,
    config: &Self::AttachmentConfig,
    page_size: Option<u32>
) -> Result<Self::DbHandle, FbError>

Create the database and attach Returns a database handle on success

Implementors§