JDBC

Jdbc
1. 注册数据库驱动 Class.forName(“oracle.jdbc.OracleDriver”);
2. 连接数据库 DriverManager.getConnection(“url”,”username”,”password”);
3. 获得Statement对象  con.createstatement();
4. 用statement对象执行SQL语句,(其实statement对象只是负责发送sql语句和接收结果),查询是stmt.executeQuery(“sql”)语句,执行更新等操作时stmt.executeUpdate(“sql”)语句,返回的结果存储在ResultSet结果集对象中,操作结果集对象时,要保证数据库连接是打开的.
5. 处理执行结果
6. 释放资源

Statement和PreparedStatement区别: PreparedStatement为预编译的,支持批处理,它有一个set方法使sql中可以有占位符,更安全.
CallableStatement:执行存储过程.

查询    while(rs.next)遍历查询到的内容
修改    直接修改,然后调用statement.createUpdate();

你可能感兴趣的:(jdbc)