mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-07-29 10:43:06 +08:00
remove ';' in builder sql
This commit is contained in:
@ -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");
|
||||
|
Reference in New Issue
Block a user