We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 836d927 commit 8a38cb7Copy full SHA for 8a38cb7
src/main/java/com/geckotechnology/mySqlDataCompare/MySQLSchemaRetriever.java
@@ -24,7 +24,8 @@ public void openConnection() throws Exception {
24
Properties info = new Properties();
25
info.put ("defaultFetchSize", Integer.toString(SELECT_FETCH_SIZE));
26
info.put ("useCursorFetch", "true");
27
- conn = DriverManager.getConnection(url, info);
+ conn = DriverManager.getConnection(url, info);
28
+ conn.setAutoCommit(true);
29
}
30
31
public void closeConnection() {
0 commit comments