Lines Matching refs:conditions
92 fn build_sql_where(conditions: &DbMap, filter: bool, sql: &mut String) {
93 if !conditions.is_empty() || filter {
97 if !conditions.is_empty() {
101 if !conditions.is_empty() {
102 for (i, column_name) in conditions.keys().enumerate() {
109 if i != conditions.len() - 1 {
173 if let Some(conditions) = reverse_condition {
174 if !conditions.is_empty() {
176 for (i, column_name) in conditions.keys().enumerate() {
183 if i != conditions.len() - 1 {
367 /// let ret = table.update_row(conditions, false, datas);