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

jdbc 简单连接

时间:2014-07-29 12:23:46      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:java   os   io   for   cti   ar   sql   res   

package itcast;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class Base {

    /**
     * @param args
     */
    public static void main(String[] args) {
    
    }

    static void template() throws Exception {
        String url = "jdbc:mysql://localhost:3306/test";
        String user = "root";
        String password = "";
        Connection conn = null;
        Statement st = null;
        ResultSet rs = null;
        try {
            // 1注册驱动
            Class.forName("com.mysql.jdbc.Driver");
            // 2建立链接
            conn = DriverManager.getConnection(url, user, password);
            // 3创建语句
            st = conn.createStatement();
            // 4 执行语句
            rs = st.executeQuery("select * from user");
            // 5处理结果
            while (rs.next()) {
                System.out.println(rs.getObject(1) + "\t" + rs.getObject(2)
                        + "\t" + rs.getObject(3) + "\t" + rs.getObject(4)
                        + "\t" + rs.getObject(5) + "\t");
            }
        } finally {
            try {
                if (rs != null) {
                    rs.close();
                }
            } finally {
                try {
                    if (st != null) {
                        st.close();
                    }
                } finally {
                    if (conn != null) {
                        conn.close();
                    }
                }
            }
        }
    }

}

jdbc 简单连接,布布扣,bubuko.com

jdbc 简单连接

标签:java   os   io   for   cti   ar   sql   res   

原文地址:http://www.cnblogs.com/siashan/p/3874793.html

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