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}
({1})
VALUES
({2})"+UtilConstants.ReplaceCommaKey.Replace("{","").Replace("}", "") + " SELECT dbinfo('sqlca.sqlerrd1') FROM dual";
({2})"+UtilConstants.ReplaceCommaKey.Replace("{","").Replace("}", "") + "";
}
else
{
return @"INSERT INTO {0}
({1})
VALUES
({2}) "+UtilConstants.ReplaceCommaKey.Replace("{", "").Replace("}", "") + "SELECT dbinfo('sqlca.sqlerrd1') FROM dual";
({2}) "+UtilConstants.ReplaceCommaKey.Replace("{", "").Replace("}", "") + "";
}
}