1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| The table below lists the connection properties that Oracle JDBC drivers support.
Connection Properties Recognized by Oracle JDBC Drivers
-------------------------------------------------------
* Name Short Name Type Description
* user n/a String the user name for logging into the database
* password n/a String the password for logging into the database
* database server String the connect string for the database
* internal_logon n/a String a role, such as sysdba or sysoper, that allows you to log on as sys
* defaultRowPrefetch prefetch String (containing integer value) the default number of rows to prefetch from the server (default value is "10")
* remarksReporting remarks String (containing boolean value) "true" if getTables() and getColumns() should report TABLE_REMARKS; equivalent to using setRemarksReporting() (default value is "false")
* defaultBatchValue batchvalue String (containing integer value) the default batch value that triggers an execution request (default value is "10")
* includeSynonyms synonyms String (containing boolean value) "true" to include column information from predefined "synonym" SQL entities when you execute a DataBaseMetaData getColumns() call; equivalent to connection setIncludeSynonyms() call (default value is "false")
* processEscapes n/a String (containing boolean value) "false" to disable escape processing for statements (Statement or PreparedStatement) created from this connection. Set this to "false" if you want to avoid many calls to Statement.setEscapeProcessing(false);. This is espcially usefull for PreparedStatement where a call to setEscapeProcessing(false) would have no effect. The default is "true". |
Partager