Lines Matching refs:value
44 for (_, value) in datas.iter() {
45 stmt.bind_data(*index, value)?;
52 for (key, value) in datas.iter() {
54 stmt.bind_data(*index, value)?;
57 stmt.bind_data(*index, value)?;
64 for value in datas.iter() {
65 stmt.bind_data(*index, value)?;
127 fn from_data_type_to_str(value: &DataType) -> &'static str {
128 match *value {
135 fn from_data_value_to_str_value(value: &Value) -> String {
136 match *value {
281 /// Insert a row into table, and datas is the value to be insert.
479 /// 2. Cannot add a non-null column with no default value
480 /// 3. Only the integer and blob types support the default value, and the default value of the blob type is null.
501 return log_throw_error!(ErrCode::InvalidArgument, "A default value is required for a non-null column.");