我使用 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>