Update odbc

This commit is contained in:
sunkaixuan 2022-12-21 11:56:16 +08:00
parent 2ad142dc5e
commit ca4a266fb1

View File

@ -24,14 +24,14 @@ namespace SqlSugar.Odbc
return @"INSERT INTO {0} return @"INSERT INTO {0}
({1}) ({1})
VALUES VALUES
({2})"+UtilConstants.ReplaceCommaKey.Replace("{","").Replace("}", "") + " SELECT dbinfo('sqlca.sqlerrd1') FROM dual"; ({2})"+UtilConstants.ReplaceCommaKey.Replace("{","").Replace("}", "") + "";
} }
else else
{ {
return @"INSERT INTO {0} return @"INSERT INTO {0}
({1}) ({1})
VALUES VALUES
({2}) "+UtilConstants.ReplaceCommaKey.Replace("{", "").Replace("}", "") + "SELECT dbinfo('sqlca.sqlerrd1') FROM dual"; ({2}) "+UtilConstants.ReplaceCommaKey.Replace("{", "").Replace("}", "") + "";
} }
} }