Trait TableStatement

Source
pub trait TableStatement {
    // Required methods
    fn create_stmt(&self) -> Result<String>;
    fn create_if_not_exist_stmt(&self) -> Result<String>;
    fn drop_stmt(&self) -> Result<String>;
}
Expand description

[Deprecated] Specify table handling SQL statement

Required Methods§

Implementors§