-
Notifications
You must be signed in to change notification settings - Fork 849
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds Basic/simplified Resource Provider Code sample #404
Conversation
@Kuassim @jeandelavarene Please review, thank you |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In Main.java
I saw a try-catch; why not use a try-with-resource (as in the comment)?
I also saw you are using DriverManager.getConnection instead of using
OracleDataSource ods = new OracleDataSource();
...
Connection conn = ods.getConnection()
Ok fixed! |
|
||
### Example 1: OCI Connection TLS + OCI Connection String Providers | ||
|
||
To run this example, in [main.java](src/main/java/org/oracle/Main.java), set the following environment variables |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@aberinnj should we add some details about the feature? For example, explain what it does and when it should be used...
No description provided.