提交 e0a28582 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 2b22f40b
...@@ -325,6 +325,7 @@ Some ideas are: ...@@ -325,6 +325,7 @@ Some ideas are:
<a href="http://incubator.apache.org/empire-db/empiredb/empiredb.htm">Empire-db</a><br /> <a href="http://incubator.apache.org/empire-db/empiredb/empiredb.htm">Empire-db</a><br />
<a href="http://www.jequel.de">JEQUEL: Java Embedded QUEry Language</a><br /> <a href="http://www.jequel.de">JEQUEL: Java Embedded QUEry Language</a><br />
<a href="http://joist.ws">Joist</a><br /> <a href="http://joist.ws">Joist</a><br />
<a href="http://www.jooq.org">jOOQ</a><br />
<a href="http://josql.sourceforge.net">JoSQL</a><br /> <a href="http://josql.sourceforge.net">JoSQL</a><br />
<a href="http://code.google.com/p/liquidform">LIQUidFORM</a><br /> <a href="http://code.google.com/p/liquidform">LIQUidFORM</a><br />
<a href="http://svn.quaere.codehaus.org/browse/~raw,r=76/quaere/trunk/Quaere/src/test/java/org/quaere/alias/test/SamplesTest.java">Quaere (Alias implementation)</a><br /> <a href="http://svn.quaere.codehaus.org/browse/~raw,r=76/quaere/trunk/Quaere/src/test/java/org/quaere/alias/test/SamplesTest.java">Quaere (Alias implementation)</a><br />
......
...@@ -424,9 +424,9 @@ JMatter</a><br /> ...@@ -424,9 +424,9 @@ JMatter</a><br />
Framework for constructing workgroup business applications based on the Naked Objects Architectural Pattern. Framework for constructing workgroup business applications based on the Naked Objects Architectural Pattern.
</p> </p>
<p><a href="http://jooq.sourceforge.net"> <p><a href="http://www.jooq.org">
jOOQ (Java Object Oriented Querying)</a><br /> jOOQ (Java Object Oriented Querying)</a><br />
jOOQ takes your database schema as a base for code generation. jOOQ is a fluent API for typesafe SQL query construction and execution
</p> </p>
<p><a href="http://getjotbot.com"> <p><a href="http://getjotbot.com">
......
...@@ -567,7 +567,8 @@ When using Hibernate, try to use the <code>H2Dialect</code> if possible. ...@@ -567,7 +567,8 @@ When using Hibernate, try to use the <code>H2Dialect</code> if possible.
When using the <code>H2Dialect</code>, When using the <code>H2Dialect</code>,
compatibility modes such as <code>MODE=MySQL</code> are not supported. compatibility modes such as <code>MODE=MySQL</code> are not supported.
When using such a compatibility mode, use the Hibernate dialect for the When using such a compatibility mode, use the Hibernate dialect for the
corresponding database instead of the <code>H2Dialect</code>. corresponding database instead of the <code>H2Dialect</code>;
but please note H2 does not support all features of all databases.
</p> </p>
<h2 id="using_toplink">Using TopLink and Glassfish</h2> <h2 id="using_toplink">Using TopLink and Glassfish</h2>
...@@ -646,24 +647,35 @@ then run the jOOQ code generator on the command line using this command: ...@@ -646,24 +647,35 @@ then run the jOOQ code generator on the command line using this command:
</p> </p>
<pre> <pre>
java -cp jooq.jar;jooq-meta.jar;jooq-codegen.jar;h2-1.3.158.jar;. java -cp jooq.jar;jooq-meta.jar;jooq-codegen.jar;h2-1.3.158.jar;.
org.jooq.util.GenerationTool /codegen.properties org.jooq.util.GenerationTool /codegen.xml
</pre> </pre>
<p> <p>
...where <code>codegen.properties</code> contains this information ...where <code>codegen.xml</code> is on the classpath and contains this information
</p> </p>
<pre> <pre>
jdbc.Driver=org.h2.Driver &lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?>
jdbc.URL=jdbc:h2:~/test &lt;configuration xmlns="http://www.jooq.org/xsd/jooq-codegen-2.3.0.xsd">
jdbc.Schema=PUBLIC &lt;jdbc>
jdbc.User=sa &lt;driver>org.h2.Driver&lt;/driver>
jdbc.Password= &lt;url>jdbc:h2:~/test&lt;/url>
generator=org.jooq.util.DefaultGenerator &lt;user>sa&lt;/user>
generator.database=org.jooq.util.h2.H2Database &lt;password>&lt;/password>
generator.database.includes=.* &lt;/jdbc>
generator.database.excludes= &lt;generator>
generator.generate.relations=true &lt;name>org.jooq.util.DefaultGenerator&lt;/name>
generator.target.package=org.jooq.h2.generated &lt;database>
generator.target.directory=./src &lt;name>org.jooq.util.h2.H2Database&lt;/name>
&lt;includes>.*&lt;/includes>
&lt;excludes>&lt;/excludes>
&lt;inputSchema>PUBLIC&lt;/inputSchema>
&lt;/database>
&lt;generate>&lt;/generate>
&lt;target>
&lt;packageName>org.jooq.h2.generated&lt;/packageName>
&lt;directory>./src&lt;/directory>
&lt;/target>
&lt;/generator>
&lt;/configuration>
</pre> </pre>
<p> <p>
Using the generated source, you can query the database as follows: Using the generated source, you can query the database as follows:
...@@ -678,7 +690,7 @@ create.selectFrom(USER) ...@@ -678,7 +690,7 @@ create.selectFrom(USER)
</pre> </pre>
<p> <p>
See more details on <a href="http://www.jooq.org">jOOQ Homepage</a> See more details on <a href="http://www.jooq.org">jOOQ Homepage</a>
and in the <a href="http://sourceforge.net/apps/trac/jooq/wiki/Manual/META/Configuration">jOOQ Manual</a> and in the <a href="http://www.jooq.org/tutorial.php">jOOQ Tutorial</a>
</p> </p>
<h2 id="web_applications">Using Databases in Web Applications</h2> <h2 id="web_applications">Using Databases in Web Applications</h2>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论