Skip to content

Commit

Permalink
Oracle databases do support prepared statement metadata retrieval apa…
Browse files Browse the repository at this point in the history
  • Loading branch information
nadment committed Apr 7, 2024
1 parent 1792d4b commit fc0e74d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ public boolean isRequiresCreateTablePrimaryKeyAppend() {
*/
@Override
public boolean isSupportsPreparedStatementMetadataRetrieval() {
return false;
return true;
}

/** @return The maximum number of columns in a database, <=0 means: no known limit */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public void testOverriddenSettings() throws Exception {
"http://download.oracle.com/docs/cd/B19306_01/java.102/b14355/urls.htm#i1006362",
nativeMeta.getExtraOptionsHelpText());
assertTrue(nativeMeta.isRequiresCreateTablePrimaryKeyAppend());
assertFalse(nativeMeta.isSupportsPreparedStatementMetadataRetrieval());
assertTrue(nativeMeta.isSupportsPreparedStatementMetadataRetrieval());
String quoteTest1 = "FOO 'BAR' \r TEST \n";
String quoteTest2 = "FOO 'BAR' \\r TEST \\n";
assertEquals(
Expand Down

0 comments on commit fc0e74d

Please sign in to comment.