当前位置: 技术问答>java相关
如何配置JDBC访问ORACLE
来源: 互联网 发布时间:2015-04-25
本文导语: 我的机器是WINDOWS2000SERVER,装好了JDK1。3。1,ORACLE客户端,配置好了J2EE(能正确访问JSP页面)。 现在通过JDBC-ODBC-BRIDGE可以访问ORACLE 8数据库。 我想在普通JAVA程序和JSP中利用ORACLE的JDBC访问ORACLE应该怎么样做? 我己经...
我的机器是WINDOWS2000SERVER,装好了JDK1。3。1,ORACLE客户端,配置好了J2EE(能正确访问JSP页面)。
现在通过JDBC-ODBC-BRIDGE可以访问ORACLE 8数据库。
我想在普通JAVA程序和JSP中利用ORACLE的JDBC访问ORACLE应该怎么样做?
我己经下了,816classes12.zip,
CLASSPATH变量如下:c:jdklibtools.jar;c:jdklibdt.jar;c:j2eelibj2ee.jar;c:jdklib;e:java;
现在通过JDBC-ODBC-BRIDGE可以访问ORACLE 8数据库。
我想在普通JAVA程序和JSP中利用ORACLE的JDBC访问ORACLE应该怎么样做?
我己经下了,816classes12.zip,
CLASSPATH变量如下:c:jdklibtools.jar;c:jdklibdt.jar;c:j2eelibj2ee.jar;c:jdklib;e:java;
|
建议你看一下oracle带的帮助。
/*
* This sample shows how to list all the names from the EMP table
*
* It uses the JDBC THIN driver. See the same program in the
* oci8 samples directory to see how to use the other drivers.
*/
// You need to import the java.sql package to use JDBC
import java.sql.*;
class Employee
{
public static void main (String args [])
throws SQLException
{
// Load the Oracle JDBC driver
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
// Connect to the database
// You must put a database name after the @ sign in the connection URL.
// You can use either the fully specified SQL*net syntax or a short cut
// syntax as ::. The example uses the short cut syntax.
Connection conn =
DriverManager.getConnection ("jdbc:oracle:thin:@dlsun511:1721:dbms733",
"scott", "tiger");
// Create a Statement
Statement stmt = conn.createStatement ();
// Select the ENAME column from the EMP table
ResultSet rset = stmt.executeQuery ("select ENAME from EMP");
// Iterate through the result and print the employee names
while (rset.next ())
System.out.println (rset.getString (1));
}
}