如何在 swing 中连接到 h2 数据库

Posted

技术标签:

【中文标题】如何在 swing 中连接到 h2 数据库【英文标题】:How do I get a Connection to h2 database in swing 【发布时间】:2018-09-04 13:01:56 【问题描述】:

我写了这段代码,但它不起作用。

它会抛出一个错误,指出这不是合适的驱动程序。

谁能解释我做错了什么?

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

public class ConnectionUtil 

    public static Connection getConnection() 
        try 
            Class.forName("org.h2.jdbc.Driver");
            Connection con = DriverManager.getConnection("org.h2:database/javadb", "root", "");
            return con;
         catch (Exception e) 
            e.printStackTrace();
            return null;
        
    


【问题讨论】:

您的网址错误。 h2database.com/html/tutorial.html#connecting_using_jdbc 如果我的网址有误,请给我关于网址的建议? 【参考方案1】:

我使用此 URL 连接到我的数据库“jdbc:h2:file:./database/mydatabase”

【讨论】:

以上是关于如何在 swing 中连接到 h2 数据库的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Python 中连接到 MySQL 数据库?

如何在 Python 中连接到 MySQL 数据库?

如何在 Python 中连接到 MySQL 数据库?

如何在 Python 中连接到 MySQL 数据库?

如何在 R 中连接到 SQL Server 数据库

如何在 bash 脚本中连接到 Oracle 数据库?