(Connection connection)
| 4991 | } |
| 4992 | |
| 4993 | private Statement createStatement(Connection connection) throws SQLException { |
| 4994 | if (resultSetHoldability == -1) { |
| 4995 | return connection.createStatement(resultSetType, resultSetConcurrency); |
| 4996 | } |
| 4997 | return connection.createStatement(resultSetType, resultSetConcurrency, resultSetHoldability); |
| 4998 | } |
| 4999 | |
| 5000 | private static void handleError(Connection connection, Throwable t) throws SQLException { |
| 5001 | if (connection != null) { |