package com.jckb; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * jdbc编程步骤: * 1、加载数据库驱动 * 2、创建并获取数据库链接 * 3、创建jdbc statement对象 * 4、设置sql语句 * 5、设置sql语句中的参数(使用preparedStatement) * 6、通过statement执行sql并获取结果 * 7、对sql执行结果进行解析处理 * 8、释放资源(resultSet、preparedstatement、connection) * */ public class TestJDBC { public static void main(String[] args) { Connection con=null; PreparedStatement ps =null; ResultSet rs=null; try { //加载数据库驱动 Class.forName("com.mysql.jdbc.Driver"); //通过驱动管理类获取数据库链接 con = DriverManager.getConnection("jdbc:mysql://localhost:3306/student", "root", "root"); String sql="select stu.name,stu.age,stu.id from student stu where id = ? "; //执行sql语句 ps = con.prepareStatement(sql); ps.setInt(1, 8); //遍历查询结果集 rs = ps.executeQuery(); while(rs.next()){ System.out.println("姓名: "+rs.getString("name")+" 年龄:"+rs.getInt("age")+" id: "+rs.getInt("id")); } } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (SQLException e){ e.printStackTrace(); }finally{ //关闭资源 try{ if(rs != null){ rs.close(); } if(ps != null){ ps.close(); } if(con != null){ con.close(); } }catch(SQLException e){ e.printStackTrace(); } } } }
原文:http://www.cnblogs.com/gx-java/p/6392129.html