码迷,mamicode.com
首页 > 数据库 > 详细

JDBC简单范例

时间:2015-01-14 21:10:48      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

连接工具类

import java.sql.Connection;
import java.sql.DriverManager;

public class DBUtil {
    // 建立连接方法
    public static Connection open() {
        try {
            Class.forName("com.mysql.jdbc.Driver");
            return DriverManager.getConnection(
                    "jdbc:mysql://localhost:3306/GeekDB", "root", "123456");
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    // 关闭连接方法
    public static void close(Connection conn) {
        if (conn != null) {
            try {
                conn.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    }

}

使用范例

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;

public class Test {

    public static void main(String[] args) {

        Connection conn = null;
        String sql = null;
        Statement stmt = null;
        PreparedStatement pstmt = null;
        ResultSet rs = null;

        // Statement查询*
        sql = "select * from customertbl";
        conn = DBUtil.open();
        try {
            stmt = conn.createStatement();
            rs = stmt.executeQuery(sql);
            while (rs.next()) {
                int id = rs.getInt(1);
                String name = rs.getString(2);
                String email = rs.getString(3);
                System.out.println(id + " " + name + " " + email);
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            DBUtil.close(conn);
            System.out.println("-----DONE-----");
        }

        // PreparedStatement插入一条
        sql = "insert into customertbl (name, email) values (?, ?)";
        conn = DBUtil.open();
        try {
            pstmt = conn.prepareStatement(sql);
            pstmt.setString(1, "Amy");
            pstmt.setString(2, "amy@163.com");
            pstmt.executeUpdate();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            DBUtil.close(conn);
            System.out.println("-----DONE-----");
        }

    }
}

 

JDBC简单范例

标签:

原文地址:http://www.cnblogs.com/yangleda/p/4224791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!