Lines Matching defs:DbMap
43 fn bind_datas(datas: &DbMap, stmt: &Statement, index: &mut i32) -> Result<()> { in bind_datas()
51 fn bind_where_datas(datas: &DbMap, stmt: &Statement, index: &mut i32) -> Result<()> { in bind_where_datas()
92 fn build_sql_where(conditions: &DbMap, filter: bool, sql: &mut String) { in build_sql_where()
172 fn build_sql_reverse_condition(reverse_condition: Option<&DbMap>, sql: &mut String) { in build_sql_reverse_condition()
321 condition: &DbMap, in delete_row()
322 reverse_condition: Option<&DbMap>, in delete_row()
369 …pub(crate) fn update_row(&self, condition: &DbMap, is_filter_sync: bool, datas: &DbMap) -> Result<… in update_row()
401 condition: &DbMap, in query_row()
405 ) -> Result<Vec<DbMap>> { in query_row()
449 pub(crate) fn count_datas(&self, condition: &DbMap, is_filter_sync: bool) -> Result<u32> { in count_datas()
469 pub(crate) fn is_data_exists(&self, cond: &DbMap, is_filter_sync: bool) -> Result<bool> { in is_data_exists()
515 …pub(crate) fn replace_row(&self, condition: &DbMap, is_filter_sync: bool, datas: &DbMap) -> Result… in replace_row()