package com.hanqi.test;
import java.sql.*;
public class jdbcTest {
public static void main(String[] args) {
// 测试JDBC
Connection conn = null;
try {
// 1.加载驱动和注册
// 每一种数据库提供不同的驱动名
Class.forName("oracle.jdbc.driver.OracleDriver");// 加载
// 2.连接数据库 :用户名,密码,URL数据库地址
// url-
String strUrl = "jdbc:oracle:thin:@localhost:1521:ORCL";
// 得到连接
conn = DriverManager.getConnection(strUrl, "test1", "1234");
System.out.println("连接数据库成功");
// 3.操作数据库,增删改查
//执行sql语句完成响应的功能
Statement st = conn.createStatement();
//执行增删改语句
int i = st.executeUpdate("update T_students set sname = '小四' where sno = '101'");
if( i > 0 )
{
System.out.println("操作数据库成功,影响了"+i+"+数据");
}
else
{
System.out.println("操作数据库失败");
}
st.close();
// 4.关闭连接
}
catch (Exception e)
{
e.printStackTrace();
System.out.println("连接数据库失败");
} finally {
if (conn != null) {
try {
conn.close();
} catch (SQLException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
}
}
}