remove ';' in builder sql

This commit is contained in:
SwallowGG
2024-07-09 10:48:18 +08:00
parent 390b228e28
commit 7a95f126b2
5 changed files with 13 additions and 9 deletions

View File

@ -112,7 +112,7 @@ public class SqlServerDBManage extends DefaultDBManage implements DBManage {
valueList.add(valueString);
}
String insertSql = sqlBuilder.buildSingleInsertSql(databaseName, schemaName, tableName, columnList, valueList);
asyncContext.write(insertSql);
asyncContext.write(insertSql+";");
valueList.clear();
}
asyncContext.write("go \n");