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

mysql jdbc操作

时间:2019-01-13 01:48:16      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:private   dstat   stat   sele   java   while   exe   new   object   

import java.sql.*;
import java.util.Map;

public class Mysql {
    public static void main(String[] args) {
        Connection conn = getConn();
        PreparedStatement pstmt;
        try {
            pstmt = conn.prepareStatement("select * from lw_area where area_id like ‘35%‘ and area_level <=3");
            ResultSet rs = pstmt.executeQuery();
            //Map<String, Map<String, Object>>  
            while (rs.next()) {
                System.out.println(rs.getLong("area_id"));
                System.out.print(rs.getLong("area_pid"));
            }
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
    private static Connection getConn() {
        String driver = "com.mysql.cj.jdbc.Driver";
        String url = "jdbc:mysql://localhost:3306/linewell_assets_mgt_es?serverTimezone=UTC";
        String username = "root";
        String password = "123456";
        Connection conn = null;
        try {
            Class.forName(driver); //classLoader,加载对应驱动
            conn = DriverManager.getConnection(url, username, password);
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }
        return conn;
    }
}

 

mysql jdbc操作

标签:private   dstat   stat   sele   java   while   exe   new   object   

原文地址:https://www.cnblogs.com/chenmz1995/p/10261501.html

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