Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
c7198689
提交
c7198689
authored
8月 12, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Document jOOQ usage
上级
bc580252
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
52 行增加
和
0 行删除
+52
-0
tutorial.html
h2/src/docsrc/html/tutorial.html
+52
-0
没有找到文件。
h2/src/docsrc/html/tutorial.html
浏览文件 @
c7198689
...
...
@@ -38,6 +38,8 @@ Tutorial
Using Apache ActiveMQ
</a><br
/>
<a
href=
"#using_netbeans"
>
Using H2 within NetBeans
</a><br
/>
<a
href=
"#using_jooq"
>
Using H2 with jOOQ
</a><br
/>
<a
href=
"#web_applications"
>
Using Databases in Web Applications
</a><br
/>
<a
href=
"#android"
>
...
...
@@ -628,6 +630,56 @@ This is a problem for queries that modify state, such as <code>SELECT SEQ.NEXTVA
In this case, two sequence values are allocated instead of just one.
</p>
<h2
id=
"using_jooq"
>
Using H2 with jOOQ
</h2>
<p>
jOOQ adds a thin layer on top of JDBC, allowing for type-safe SQL construction,
including advanced SQL, stored procedures and advanced data types.
jOOQ takes your database schema as a base for code generation.
If this is your example schema:
</p>
<pre>
CREATE TABLE USER (ID INT, NAME VARCHAR(50));
</pre>
<p>
then run the jOOQ code generator on the command line using this command:
</p>
<pre>
java -cp jooq.jar;jooq-meta.jar;jooq-codegen.jar;h2-1.3.158.jar;.
org.jooq.util.GenerationTool /codegen.properties
</pre>
<p>
...where
<code>
codegen.properties
</code>
contains this information
</p>
<pre>
jdbc.Driver=org.h2.Driver
jdbc.URL=jdbc:h2:~/test
jdbc.Schema=PUBLIC
jdbc.User=sa
jdbc.Password=
generator=org.jooq.util.DefaultGenerator
generator.database=org.jooq.util.h2.H2Database
generator.database.includes=.*
generator.database.excludes=
generator.generate.relations=true
generator.target.package=org.jooq.h2.generated
generator.target.directory=./src
</pre>
<p>
Using the generated source, you can query the database as follows:
</p>
<pre>
Factory create = new H2Factory(connection);
Result
<UserRecord>
result =
create.selectFrom(USER)
.where(NAME.like("Johnny%"))
.orderBy(ID)
.fetch();
</pre>
<p>
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>
</p>
<h2
id=
"web_applications"
>
Using Databases in Web Applications
</h2>
<p>
There are multiple ways to access a database from within web
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论