JBDC链接数据库

Posted 亲亲的我来了

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JBDC链接数据库相关的知识,希望对你有一定的参考价值。

package cn.fly;

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

import org.apache.log4j.Logger;

/**
 * java方式连接和关闭数据库
 * 
 * @author ASUS
 * 
 */
public class Test1 {
    private static Logger logger = Logger.getLogger(Test1.class.getName());

    public static void main(String[] args) {
        Connection conn = null;
        // 1.加载驱动
        try {
            Class.forName("com.mysql.jdbc.Driver");
        } catch (ClassNotFoundException e) {
            logger.error(e);
        }
        // 2.建立连接
        try {
            conn = DriverManager.getConnection(
                    "jdbc:mysql://localhost:3306/epet", "fly", "0000");
            System.out.println("建立连接成功~~");
        } catch (SQLException e) {
            logger.error(e);
        } finally {
            // 3.关闭连接
            if (conn != null) {
                try {
                    conn.close();
                    System.out.println("关闭连接成功~~");
                } catch (SQLException e) {
                    logger.error(e);
                }
            }
        }
    }
}

 

以上是关于JBDC链接数据库的主要内容,如果未能解决你的问题,请参考以下文章

JBDC在IDEA下连接SQL数据库

Java - 如果 JBDC 成功连接,则切换 Jframe

在 /WEB-INF/lib 中使用 JBDC 4.0 驱动程序,但仍然需要 Class#forName() 来加载它

H2 控制台无法访问 jbdc 数据库

转jbdc程序启动报错:ORA-12505;PL/SQL却可以登录的解决方法

JBDC工具类