zoukankan      html  css  js  c++  java
  • JAVA日报

    用户管理系统开发(dbutil)

    util主要管数据库的连接 提供连接供其他层使用

    package dbutill;
    import java.sql.*;
    import java.util.Scanner;
    public class db {
    public static final String URL = "jdbc:mysql://localhost:3306/text?characterEncoding=utf8&useSSL=false&serverTimezone=UTC";
    public static final String USER = "root";
    public static final String PASSWORD = "123";
    public static final String DRIVER="com.mysql.cj.jdbc.Drive";
    public static Connection getConn () throws ClassNotFoundException {
    Connection conn=null;
    try {
    Class.forName(DRIVER);
    } catch (ClassNotFoundException e1) {
    // TODO 自动生成的 catch 块
    e1.printStackTrace();
    }
    try {
    conn = DriverManager.getConnection(URL,USER,PASSWORD);
    System.out.println("连接成功");

    } catch (SQLException e) {
    // TODO: handle exception
    e.printStackTrace();
    }
    return conn;
    }
    public static void close (Statement state, Connection conn) {
    if (state != null) {
    try {
    state.close();
    } catch (SQLException e) {
    e.printStackTrace();
    }
    }
    if (conn != null) {
    try {
    conn.close();
    } catch (SQLException e) {
    e.printStackTrace();
    }
    }
    }
    public static void close (ResultSet rs, Statement state, Connection conn) {
    if (rs != null) {
    try {
    rs.close();
    } catch (SQLException e) {
    e.printStackTrace();
    }
    }
    if (state != null) {
    try {
    state.close();
    } catch (SQLException e) {
    e.printStackTrace();
    }
    }

    if (conn != null) {
    try {
    conn.close();
    } catch (SQLException e) {
    e.printStackTrace();
    }
    }
    }
    public static void main(String[] args) throws Exception {
    Connection conn=getConn();
    // conn.close();
    }

    }

  • 相关阅读:
    luogu P3295 [SCOI2016]萌萌哒
    luogu P4916 魔力环
    CF997C Sky Full of Stars
    CF961G Partitions
    android屏蔽软键盘并且显示光标
    设置和获取Android中各种音量
    自定义广播
    发送广播
    android取高度
    Java数字格式化
  • 原文地址:https://www.cnblogs.com/mumulailai/p/14906028.html
Copyright © 2011-2022 走看看