?? testoracle.java
字號:
import java.sql.*;
public class testOracle
{
public static void main(String[] args)
{
//定義變量初始化:
Connection conn = null;
Statement stmt = null;
ResultSet rset = null;
System.out.println("開始測試Oracle的數據庫驅動程序!");
try{
Class.forName("oracle.jdbc.driver.OracleDriver");
}
catch(ClassNotFoundException e)
{
System.out.println("數據庫驅動類沒找到");
}
try{
conn = DriverManager.getConnection("jdbc:oracle:thin:@zhai:1521:orpk","pk","pk");
System.out.println("數據庫連接成功!");
}catch(SQLException e)
{
System.out.println("執行SQL語句異常!");
e.printStackTrace();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -