• mysql jdbc操作


    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;
        }
    }

    把结果转化成map形式:

    ResultSet rs = stmt.executeQuery(sql);
    ResultSetMetaData md = rs.getMetaData();
    int columnCount = md.getColumnCount();
    while (rs.next()) {
    Map<String, Object> rowData = new HashMap<String, Object>();
    for (int i = 1; i <= columnCount; i++) {
    rowData.put(md.getColumnName(i), rs.getObject(i));
    }
    }
  • 相关阅读:
    深入理解HTTP Session
    java中使用队列:java.util.Queue
    throws/throw Exception 异常应用
    Log4j实现对Java日志的配置全攻略
    java中volatile关键字的含义
    hibernate调用oracle存储过程||函数
    手势仿QQ侧滑---秀清
    归档和解档---秀清
    全局定义UINavigationContoller--By秀清
    重力感应 加速计- By严焕培
  • 原文地址:https://www.cnblogs.com/chenmz1995/p/10261501.html
Copyright © 2020-2023  润新知