Update sqlite

This commit is contained in:
sunkaixuan 2025-06-23 13:32:13 +08:00
parent 6578a41474
commit 5992cd11bd
2 changed files with 6 additions and 1 deletions

View File

@ -76,6 +76,11 @@ namespace SqlSugar
}
batchInsetrSql.AppendLine(";SELECT LAST_INSERT_ROWID();");
if (MySqlIgnore)
{
batchInsetrSql.Remove(0, "INSERT INTO `".Length);
batchInsetrSql.Insert(0, "REPLACE INTO `");
}
var result = batchInsetrSql.ToString();
return result;
}

View File

@ -2,7 +2,7 @@
<package >
<metadata>
<id>SqlSugarCore</id>
<version>5.1.4.197-preview04</version>
<version>5.1.4.197-preview13</version>
<authors>sunkaixuan</authors>
<owners>果糖大数据科技</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>