Trait rsfbclient_core::FirebirdClientDbOps[][src]

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>; }

Responsible for database administration and attachment/detachment

Associated Types

type DbHandle: Send[src]

A database handle

type AttachmentConfig: Send + Clone[src]

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

Loading content...

Required methods

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

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

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

Disconnect from the database

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

Drop the database

Loading content...

Implementors

Loading content...