Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
OracleJdbcConnection.java - Oracle JDBC Connection
How to create a JDBC connection to Oracle database using the ojdbc Oracle Driver? I want to see a Java program example.
✍: FYIcenter.com
If you have Oracle Database 11g XE running on your local computer,
you can use the following example to learn how to create a JDBC connection:
// Copyright (c) FYIcenter.com
import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
// Example of ojdbc JDBC connection to Oracle server
public class OracleJdbcConnection {
public static void main(String [] args) throws Exception {
// Use the basic ojdbc JDBC connection URL
String url = "jdbc:oracle:thin:SYS AS SYSDBA/fyicenter@//localhost/XE";
Connection con = DriverManager.getConnection(url);
System.out.println("JDBC connection and database server information:");
DatabaseMetaData meta = con.getMetaData();
System.out.println("Database Product Name: "
+ meta.getDatabaseProductName());
System.out.println("Database Product Version: "
+ meta.getDatabaseProductVersion());
System.out.println("Driver Name: "
+ meta.getDriverName());
System.out.println("Driver Version: "
+ meta.getDriverVersion());
System.out.println("JDBC Major Version: "
+ meta.getJDBCMajorVersion());
System.out.println("JDBC Minor Version: "
+ meta.getJDBCMinorVersion());
// Close the connection
con.close();
}
}
You can compile and run the above example in a command window as shown below:
C:\fyicenter>\local\jdk-1.8.0\bin\javac OracleJdbcConnection.java C:\fyicenter>\local\jdk-1.8.0\bin\java -cp .;\fyicenter\Oracle-11.2.0.4\ojdbc6.jar OracleJdbcConnection JDBC connection and database server information: Database Product Name: Oracle Database Product Version: Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production Driver Name: Oracle JDBC driver Driver Version: 11.2.0.4.0 JDBC Major Version: 11 JDBC Minor Version: 2
The output shows that:
⇒ OracleCreateTable.java - Oracle JDBC Create Table
⇐ Start Oracle Database 11g XE on Windows
2018-03-28, ∼3112🔥, 0💬
Popular Posts:
How to download and install xml-commons External Source Package? The source package contains Java so...
How to compare performances of various XML parsers with the jaxp\SourceValidator.jav aprovided in th...
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...
How to download and install JDK (Java Development Kit) 1.3? If you want to write Java applications, ...
ZooKeeper is a centralized service for maintaining configuration information, naming, providing dist...