Oracle的驱动与Mysql的驱动
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数据库成功");
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) {
}
}
}相关阅读:
如何实现FireFox文本自动换行
php xml留言板 xml存储数据的简单例子
在Redhat AS4中加载NTFS分区的方法详解
“当页面跳转或者关闭窗口时弹出提示窗口!”JAVASCRIPT实例
明明白白查看电脑硬件的配置情况
.NET 3.5和VS 2008中的ASP.NET AJAX
Linux系统下Shell命令行快捷键实用技巧
mysql 远程连接数据库的方法集合
比较简单的一个符合web标准的JS调用flash方法
模拟OICQ的实现思路和核心程序(一)
批处理中使用系统路径的命令
用ASP.Net AJAX开发Web程序 -- Timer、UpdateProgress篇
基于mysql的论坛(5)
通过Dreamweaver学习了解CSS