mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Update access bug
This commit is contained in:
parent
40c7fa5001
commit
cc0e18ce7b
@ -26,13 +26,13 @@ namespace SqlSugar.Access
|
|||||||
whereList.Add(whereString);
|
whereList.Add(whereString);
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
return string.Format("{0} {1} WHERE {2}", updateTable, setValues, string.Join(" AND", whereList)) + UtilConstants.ReplaceCommaKey;
|
return string.Format("{0} {1} WHERE {2}", updateTable, setValues, string.Join(" AND ", whereList)) + UtilConstants.ReplaceCommaKey;
|
||||||
}).ToArray()));
|
}).ToArray()));
|
||||||
return sb.ToString();
|
return sb.ToString();
|
||||||
}
|
}
|
||||||
private string GetOracleUpdateColums(int i, DbColumnInfo m, bool iswhere)
|
private string GetOracleUpdateColums(int i, DbColumnInfo m, bool iswhere)
|
||||||
{
|
{
|
||||||
return string.Format("{0}={1}", m.DbColumnName , FormatValue(m.Value));
|
return string.Format(" {0}={1} ", m.DbColumnName , FormatValue(m.Value));
|
||||||
}
|
}
|
||||||
|
|
||||||
public override object FormatValue(object value)
|
public override object FormatValue(object value)
|
||||||
|
Loading…
Reference in New Issue
Block a user