If your application uses any connections, you must add these to the connections.properties file. If you are using JDeveloper, it is strongly recommended that you use JDeveloper to edit connection information. If you do not have access to JDeveloper, you can edit the file in a text editor.
To manually add a connection to the connections.properties file:
Property name | Value |
ConnectionType | IIOP or JDBC |
ConnectionName | the name of the connection |
user | the user ID of the connection |
DeployPassword | true if you want to include the password here, false if you want the user to enter it when connecting |
password | the user's password--do not include this pair if you set DeployPassword to false |
URL |
for IIOP connections, a string with the syntax sess_iiop\\\://<hostname>\\\:<port>\\\:<SID> for JDBC connections, a string with the syntax jdbc\\\:oracle\\\:<driver>\\\:@<hostname>\\\:<port>\\\:<SID> |
Role | Normal, SYSDBA, or SYSOPER |
Property name | Value |
remarksReporting | false |
JdbcDriver | oracle.jdbc.driver.OracleDriver |
defaultBatchValue | Oracle JDBC drivers allow you to accumulate inserts and updates of prepared statements and send them to the server in batches once it reaches a specified batch value. This feature reduces round trips to the server. Use the value 1 if you don't want to use this feature. |
defaultRowPrefetch | Oracle JDBC drivers allow you to set the number of rows to prefetch from the server while the result set is being populated during a query. Prefetching row data into the client reduces the number of round trips to the server. A typical value for this property is 10. |