時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(1)
Mysql的驅動:
public PersonOperation() {
try {
Class.forName("com.mysql.jdbc.Driver");
try {
connection = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/linger", "root", "123456");
//"jdbc:mysql://localhost:3306/checkcode?useUnicode=true&characterEncoding=utf-8";
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// connection = DBPool.getConnection();
}
Oracle的驅動:
public class Driver {
public static void main(String[] args) throws IOException,
InstantiationException, IllegalAccessException,
ClassNotFoundException {
Connection con = null;
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
con = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1521:orcl", "system", "sys");
System.out.println("連接Oracle數(shù)據(jù)庫成功");
Statement statement = con.createStatement();
ResultSet resultSet = statement
.executeQuery("select * from scott.emp");
while (resultSet.next()) {
System.out.print(resultSet.getString(1));
System.out.print(resultSet.getString(2));
System.out.print(resultSet.getString(3));
System.out.println(resultSet.getString(4));
}
} catch (SQLException e) {
}
}
}
關鍵詞標簽:Oracle,mysql
相關閱讀
熱門文章 Oracle中使用alter table來增加,刪除,修改列的語法 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 誤刪Oracle數(shù)據(jù)庫實例的控制文件 為UNIX服務器設置Oracle全文檢索
人氣排行 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 Oracle中使用alter table來增加,刪除,修改列的語法 ORACLE SQL 判斷字符串是否為數(shù)字的語句 ORACLE和SQL語法區(qū)別歸納(1) oracle grant 授權語句 ORACLE修改IP地址后如何能夠使用 如何加速Oracle大批量數(shù)據(jù)處理 Oracle刪除表的幾種方法