【问题标题】:Which JAR files are required for SchemaCrawler?SchemaCrawler 需要哪些 JAR 文件?
【发布时间】:2018-03-24 09:37:51
【问题描述】:

我正在使用 Eclipse、SQLite 数据库和 Hibernate。我想在我的项目中使用 SchemaCrawler,已经有 sqlite-jdbc 库。我的目的是比较使用两个数据库的 SchemaCrawler 结构。但我什至无法连接到我的第一个数据库。我正在使用此代码:

public class SchemaConroller {

    public SchemaConroller() {

        SchemaCrawlerOptions options = new SchemaCrawlerOptions();
        options.setSchemaInfoLevel(SchemaInfoLevelBuilder.standard());


        try {
            Connection conn = getConnection();
            Catalog catalog = SchemaCrawlerUtility.getCatalog(conn, options);
            for (Schema schema : catalog.getSchemas()) {
                System.out.println(schema);
                for (Table table : catalog.getTables(schema)) {
                    System.out.print("o--> " + table);
                    for (Column column : table.getColumns()) {
                        System.out.println("     o--> " + column);
                    }
                }
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    private static Connection getConnection() throws SchemaCrawlerException, SQLException, ClassNotFoundException {
        String dbPath = "src/home/accounting/DB/myDatabase.sqlite";
        Class.forName("org.sqlite.JDBC");
        Connection c = DriverManager.getConnection("jdbc:sqlite:" + dbPath);
        return c;
    }
}

我总是出错:

Oct 12, 2017 1:31:50 PM schemacrawler.utility.SchemaCrawlerUtility matchDatabaseSpecificOverrideOptions
INFO: Using database plugin for 
Oct 12, 2017 1:31:50 PM schemacrawler.utility.TypeMap <init>
WARNING: Could not obtain data type map from connection
java.lang.NullPointerException
    at org.sqlite.jdbc3.JDBC3Connection.getTypeMap(JDBC3Connection.java:90)
    at schemacrawler.utility.TypeMap.<init>(TypeMap.java:116)
    at schemacrawler.crawl.RetrieverConnection.<init>(RetrieverConnection.java:194)
    at schemacrawler.crawl.SchemaCrawler.crawl(SchemaCrawler.java:870)
    at schemacrawler.utility.SchemaCrawlerUtility.getCatalog(SchemaCrawlerUtility.java:75)
    at home.accounting.controller.SchemaConroller.<init>(SchemaConroller.java:35)
    at home.accounting.DA.DBCheck.start(DBCheck.java:44)
    at home.accounting.MainApp.start(MainApp.java:83)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$162(LauncherImpl.java:863)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$175(PlatformImpl.java:326)
    at com.sun.javafx.application.PlatformImpl.lambda$null$173(PlatformImpl.java:295)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$174(PlatformImpl.java:294)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.lambda$null$148(WinApplication.java:191)
    at java.lang.Thread.run(Thread.java:748)

我从here 下载了 schemacrawler.jar。会不会还需要其他的罐子?

【问题讨论】:

  • 物理路径不需要String dbPath = "src/home/accounting/DB/myDatabase.sqlite";
  • 我也试过这个:final DataSource dataSource = new DatabaseConnectionOptions("jdbc:sqlite:src/home/accounting/DB/myDatabase.sqlite"); return dataSource.getConnection("brunduk", "brunduk"); 没区别。

标签: java eclipse hibernate sqlite schemacrawler


【解决方案1】:

Alyona,您可以忽略您在问题中发布的日志中的警告。 sqlite-jdbc jar 不完全符合 JDBC 标准,因此您必须非常特别注意该 jar 的版本。请使用版本 3.7.8,该版本仅适用于 SchemaCrawler distribution。此外,您还需要与您正在使用的 SchemaCrawler 版本相对应的schemacrawler-sqlite jar

Sualeh Fatehi,SchemaCrawler

【讨论】:

  • 它的版本与 SchemaCrawler 14.16.04 兼容还是我切换到以前版本的 SchemaCrawler?
  • 我尝试将它与上面提到的版本一起使用,我仍然收到错误at org.sqlite.Conn.getTypeMap(Conn.java:419),但至少它现在可以工作了!它给了我我的数据库结构。我对我的问题stackoverflow.com/questions/46706970/… 发表评论说它不是这个问题的副本,因为它提出了完全不同的问题。你能在那篇回答我吗?至于这个,我的问题已经解决了。
猜你喜欢
  • 2021-04-23
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2018-07-26
  • 2017-10-28
  • 2013-10-20
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多