Skip to content

Commit

Permalink
[APIS-869] The default value of hold_cursor was changed to TRUE (#2780)
Browse files Browse the repository at this point in the history
The default value of hold_cursor was changed to TRUE.
  • Loading branch information
airnet73 authored May 11, 2021
1 parent b60327d commit 6e1fd97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jdbc/cubrid/jdbc/driver/ConnectionProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ private int getDefaultConnectTimeout() {
IntegerConnectionProperty clientCacheSize = new IntegerConnectionProperty(
"clientCacheSize", 1, 1, 1024);

BooleanConnectionProperty holdCursor = new BooleanConnectionProperty("hold_cursor", false);
BooleanConnectionProperty holdCursor = new BooleanConnectionProperty("hold_cursor", true);
public boolean getLogOnException() {
return logOnException.getValueAsBoolean();
}
Expand Down

0 comments on commit 6e1fd97

Please sign in to comment.