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