Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
692c07f9
提交
692c07f9
authored
6月 21, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
85bdf3db
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
20 行增加
和
13 行删除
+20
-13
changelog.html
h2/src/docsrc/html/changelog.html
+6
-1
jaqu.html
h2/src/docsrc/html/jaqu.html
+9
-9
links.html
h2/src/docsrc/html/links.html
+5
-3
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
692c07f9
...
@@ -18,7 +18,12 @@ Change Log
...
@@ -18,7 +18,12 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
H2 Console: the language was reset to the browser language when disconnecting.
<ul><li>
ALTER TABLE could throw an exception "object already exists" in some cases.
</li><li>
Views: in some situations, an ArrayIndexOutOfBoundsException
was thrown when using the same view concurrently.
</li><li>
java.util.UUID is now supported in PreparedStatement.setObject and user defined Java functions.
ResultSet.getObject() returns a java.util.UUID when using the UUID data type.
</li><li>
H2 Console: the language was reset to the browser language when disconnecting.
</li><li>
H2 Console: improved Polish translation.
</li><li>
H2 Console: improved Polish translation.
</li><li>
Server-less multi-connection mode: more bugs are fixed.
</li><li>
Server-less multi-connection mode: more bugs are fixed.
</li><li>
The download page now included the SHA1 checksums.
</li><li>
The download page now included the SHA1 checksums.
...
...
h2/src/docsrc/html/jaqu.html
浏览文件 @
692c07f9
...
@@ -27,7 +27,7 @@ Microsoft .NET technology). The following JaQu code:
...
@@ -27,7 +27,7 @@ Microsoft .NET technology). The following JaQu code:
</p>
</p>
<pre>
<pre>
Product p = new Product();
Product p = new Product();
List
<
Product
>
soldOutProducts =
List
<
Product
>
soldOutProducts =
db.from(p).where(p.unitsInStock).is(0).select();
db.from(p).where(p.unitsInStock).is(0).select();
</pre>
</pre>
<p>
<p>
...
@@ -121,7 +121,7 @@ public class Test {
...
@@ -121,7 +121,7 @@ public class Test {
private void testWhereSimple2() throws Exception {
private void testWhereSimple2() throws Exception {
Product p = new Product();
Product p = new Product();
List
<
Product
>
soldOutProducts =
List
<
Product
>
soldOutProducts =
db.from(p).
db.from(p).
where(p.unitsInStock).is(0).
where(p.unitsInStock).is(0).
orderBy(p.productId).select();
orderBy(p.productId).select();
...
@@ -129,7 +129,7 @@ public class Test {
...
@@ -129,7 +129,7 @@ public class Test {
private void testWhereSimple3() throws Exception {
private void testWhereSimple3() throws Exception {
Product p = new Product();
Product p = new Product();
List
<
Product
>
expensiveInStockProducts =
List
<
Product
>
expensiveInStockProducts =
db.from(p).
db.from(p).
where(p.unitsInStock).bigger(0).
where(p.unitsInStock).bigger(0).
and(p.unitPrice).bigger(3.0).
and(p.unitPrice).bigger(3.0).
...
@@ -138,7 +138,7 @@ public class Test {
...
@@ -138,7 +138,7 @@ public class Test {
private void testWhereSimple4() throws Exception {
private void testWhereSimple4() throws Exception {
Customer c = new Customer();
Customer c = new Customer();
List
<
Customer
>
waCustomers =
List
<
Customer
>
waCustomers =
db.from(c).
db.from(c).
where(c.region).is("WA").
where(c.region).is("WA").
select();
select();
...
@@ -146,7 +146,7 @@ public class Test {
...
@@ -146,7 +146,7 @@ public class Test {
private void testSelectSimple2() throws Exception {
private void testSelectSimple2() throws Exception {
Product p = new Product();
Product p = new Product();
List
<
String
>
productNames =
List
<
String
>
productNames =
db.from(p).
db.from(p).
orderBy(p.productId).select(p.productName);
orderBy(p.productId).select(p.productName);
}
}
...
@@ -159,7 +159,7 @@ public class Test {
...
@@ -159,7 +159,7 @@ public class Test {
private void testAnonymousTypes3() throws Exception {
private void testAnonymousTypes3() throws Exception {
final Product p = new Product();
final Product p = new Product();
List
<
ProductPrice
>
productInfos =
List
<
ProductPrice
>
productInfos =
db.from(p).orderBy(p.productId).
db.from(p).orderBy(p.productId).
select(new ProductPrice() {{
select(new ProductPrice() {{
productName = p.productName;
productName = p.productName;
...
@@ -177,7 +177,7 @@ public class Test {
...
@@ -177,7 +177,7 @@ public class Test {
private void testSelectManyCompoundFrom2() throws Exception {
private void testSelectManyCompoundFrom2() throws Exception {
final Customer c = new Customer();
final Customer c = new Customer();
final Order o = new Order();
final Order o = new Order();
List
<
CustOrder
>
orders =
List
<
CustOrder
>
orders =
db.from(c).
db.from(c).
innerJoin(o).on(c.customerId).is(o.customerId).
innerJoin(o).on(c.customerId).is(o.customerId).
where(o.total).smaller(new BigDecimal("500.00")).
where(o.total).smaller(new BigDecimal("500.00")).
...
@@ -191,7 +191,7 @@ public class Test {
...
@@ -191,7 +191,7 @@ public class Test {
private void testLength() throws Exception {
private void testLength() throws Exception {
Product p = new Product();
Product p = new Product();
List
<
Integer
>
lengths =
List
<
Integer
>
lengths =
db.from(p).
db.from(p).
where(length(p.productName)).smaller(10).
where(length(p.productName)).smaller(10).
orderBy(1).
orderBy(1).
...
@@ -209,7 +209,7 @@ public class Test {
...
@@ -209,7 +209,7 @@ public class Test {
private void testGroup() throws Exception {
private void testGroup() throws Exception {
final Product p = new Product();
final Product p = new Product();
List
<
ProductGroup
>
list =
List
<
ProductGroup
>
list =
db.from(p).
db.from(p).
groupBy(p.category).
groupBy(p.category).
orderBy(1).
orderBy(1).
...
...
h2/src/docsrc/html/links.html
浏览文件 @
692c07f9
...
@@ -38,8 +38,10 @@ H2Sharp: ADO.NET interface for the H2 database engine</a>
...
@@ -38,8 +38,10 @@ H2Sharp: ADO.NET interface for the H2 database engine</a>
<a
href=
"http://geosysin.iict.ch/irstv-trac/wiki/H2spatial/Download"
>
<a
href=
"http://geosysin.iict.ch/irstv-trac/wiki/H2spatial/Download"
>
H2 Spatial: spatial functions to H2 database
</a>
H2 Spatial: spatial functions to H2 database
</a>
<h2>
Blogs
</h2>
<h2>
Blog Articles
</h2>
<a
href=
"http://blog.flexive.org/2008/12/05/porting-flexive-to-the-h2-database/"
>
<a
href=
"http://sbdevel.wordpress.com/2009/06/15/efficient-sorting-and-iteration-on-large-databases"
>
Efficient sorting and iteration on large databases (2009-06-15)
</a><br
/>
<a
href=
"http://blog.flexive.org/2008/12/05/porting-flexive-to-the-h2-database"
>
Porting Flexive to the H2 Database (2008-12-05)
</a><br
/>
Porting Flexive to the H2 Database (2008-12-05)
</a><br
/>
<a
href=
"http://blogs.sun.com/theaquarium/entry/h2_database_with_glassfish"
>
<a
href=
"http://blogs.sun.com/theaquarium/entry/h2_database_with_glassfish"
>
H2 Database with GlassFish (2008-11-24)
</a><br
/>
H2 Database with GlassFish (2008-11-24)
</a><br
/>
...
@@ -542,7 +544,7 @@ A GUI application that allows you to find users with similar bookmarks to the us
...
@@ -542,7 +544,7 @@ A GUI application that allows you to find users with similar bookmarks to the us
<p><a
href=
"http://www.springfuse.com"
>
<p><a
href=
"http://www.springfuse.com"
>
Springfuse
</a><br
/>
Springfuse
</a><br
/>
Code generation For Spring, Spring MVC
&
Hibernate.
Code generation For Spring, Spring MVC
&
amp;
Hibernate.
</p>
</p>
<p><a
href=
"http://sqlorm.sourceforge.net/index.html"
>
<p><a
href=
"http://sqlorm.sourceforge.net/index.html"
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论