zoukankan      html  css  js  c++  java
  • java web中常用的mysql连接数据库的语句

    java web中,常用的mysql连接数库,除了需要配置好驱动程序,还有一点很重要的就是要经常会使用到这些语句:

    import java.sql.Connection;

    import java.sql.DriverManager;

    public class DatabaseConnection{

    private static final String DBDRIVER = "org.gjt.mm.mysql.Driver";

    private static final String DBURL = "jdbc:mysql://localhost:3306/mldn";

    private static final String DBUSER = "root";

    private static final String DBPASSWORD = "mysqladmin";

    private Connection conn = null;

    public DatabaseConnection() throws Exception{

        try{

                Class.forName(DBDRIVER);

                this.conn = DriverManager.getConnection(DBURL,DBUSER,DBPASSWORD);

             }catch(Exception e){

                 throw e;

              }

         {

     public Connection getConnection(){

       return this conn;

     }

    public void close() throws Exception{

       if (this.conn!=null){

           try{

                  this.conn.close();

               }catch(Exception e){

                  throw e;

            }

         }

       }

    }

  • 相关阅读:
    使用Apache Curator监控Zookeeper的Node和Path的状态
    mongo创建用户
    window下关闭nginx
    spring 下载地址
    Quartz Spring与Spring Task总结
    oracle 11g 空表也导出
    修改oracle字符集
    linux 查看最大文件
    JAVA https证书相关
    抽象类与接口
  • 原文地址:https://www.cnblogs.com/belingzhong/p/2536323.html
Copyright © 2011-2022 走看看