
- Forum
- Programming Talk
- Java
- How to connect Java & oracle using JDBC?
How to connect Java & oracle using JDBC?
This is a discussion on How to connect Java & oracle using JDBC? within the Java forums, part of the Programming Talk category; connecting java & any database the basic steps i have to be required...
-
How to connect Java & oracle using JDBC?
connecting java & any database the basic steps i have to be required
-
Create an OracleDataSource instance.Open a connection to the database using OracleDataSource.getConnection()
method of the JDBC DriverManager class.The properties of the connection are derived from the OracleDataSource
instance. This method returns an objectof the JDBC Connection class that needs input such as user name, password, connect string which identifies the JDBC driver to use, and name of the database to be connected.

Reply With Quote





