1

我使用 sybase ASE 作为我的数据库。当我尝试使用 jooq 生成代码时,它显示以下警告。但没有完成代码生成。任何帮助提前谢谢!

//--------------------------------warning-----------------------------------//
Jul 19, 2016 5:49:17 PM org.jooq.tools.JooqLogger warn
WARNING: No schemata were loaded  : Please check your connection settings, and whether your database (and your database version!) is really supported by jOOQ. Also, check the case-sensitivity in your configured <inputSchema/> elements : [xfuse]
Jul 19, 2016 5:49:17 PM org.jooq.tools.JooqLogger info
INFO: Generating schemata      : Total: 0

-->配置文件------->>>><<<------->>>

  <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<configuration xmlns="http://www.jooq.org/xsd/jooq-codegen-3.8.0.xsd">
  <jdbc>
    <driver>com.sybase.jdbc3.jdbc.SybDriver</driver>
    <url>jdbc:sybase:Tds:192.168.xx.xx:5000/xfuse</url>
    <user>xxx</user>
    <password>xxx</password>
  </jdbc>
  <generator>
    <database>
      <name>org.jooq.util.ase.ASEDatabase</name>
      <inputSchema>xfuse</inputSchema>
      <includes>.*</includes>
      <excludes></excludes>
    </database>
    <target>
      <packageName>com.gen</packageName>
      <directory>E:/RD/Test/codegeneration/output</directory>
    </target>
  </generator>
</configuration>
4

1 回答 1

0

从您的 JDBC URL 来看,我认为您可能将数据库名称与模式名称混淆了。

jdbc:sybase:Tds:192.168.xx.xx:5000/xfuse
// database name ------------------^^^^^

您应该提供的<inputSchema>是您的架构名称。如果您不确定您的模式名称是什么,那么它可能dbo在 Sybase 中。

当然,您也可以删除该<inputSchema/>元素并运行代码生成器。这样,它将为数据库中的所有模式生成代码xfuse

于 2016-07-21T15:13:46.820 回答