Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
352fb9ae
提交
352fb9ae
authored
12月 16, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
9f08bd03
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
17 行增加
和
9 行删除
+17
-9
changelog.html
h2/src/docsrc/html/changelog.html
+4
-1
jaqu.html
h2/src/docsrc/html/jaqu.html
+7
-4
JdbcStatement.java
h2/src/main/org/h2/jdbc/JdbcStatement.java
+5
-2
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+0
-1
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
352fb9ae
...
@@ -18,7 +18,10 @@ Change Log
...
@@ -18,7 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
The fulltext search documentation has been improved.
<ul><li>
Deleting a database using the tool DeleteDbFiles deleted LOB files
of other databases in the same directory.
</li><li>
When used in a subquery, LIKE and IN(..) did not work correctly sometimes.
</li><li>
The fulltext search documentation has been improved.
</li><li>
ARRAY_GET returned the wrong data type (ARRAY). Now it returns VARCHAR.
</li><li>
ARRAY_GET returned the wrong data type (ARRAY). Now it returns VARCHAR.
</li><li>
Natural join: the joined columns are not repeated any more when using SELECT *.
</li><li>
Natural join: the joined columns are not repeated any more when using SELECT *.
</li><li>
User defined aggregate functions: the method getType expected internal data types
</li><li>
User defined aggregate functions: the method getType expected internal data types
...
...
h2/src/docsrc/html/jaqu.html
浏览文件 @
352fb9ae
...
@@ -271,11 +271,14 @@ Some ideas for what to implement include:
...
@@ -271,11 +271,14 @@ Some ideas for what to implement include:
<h2>
Related Projects
</h2>
<h2>
Related Projects
</h2>
<p>
<p>
<a
href=
"http://www.jequel.de/"
>
JEQUEL: Java Embedded QUEry Language
</a><br
/>
<a
href=
"http://incubator.apache.org/empire-db/empiredb/empiredb.htm"
>
Empire-db
</a><br
/>
<a
href=
"http://quaere.codehaus.org/"
>
Quaere
</a><br
/>
<a
href=
"http://www.jequel.de"
>
JEQUEL: Java Embedded QUEry Language
</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://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
/>
<a
href=
"http://josql.sourceforge.net/"
>
JoSQL
</a><br
/>
<a
href=
"http://quaere.codehaus.org/"
>
Quaere
</a><br
/>
<a
href=
"http://groups.google.de/group/jlinq"
>
Google Group about adding LINQ features to Java
</a><br
/>
<a
href=
"http://source.mysema.com/display/querydsl/Querydsl"
>
Querydsl
</a><br
/>
<a
href=
"https://squill.dev.java.net"
>
Squill
</a><br
/>
</p>
</p>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
...
...
h2/src/main/org/h2/jdbc/JdbcStatement.java
浏览文件 @
352fb9ae
...
@@ -662,7 +662,8 @@ public class JdbcStatement extends TraceObject implements Statement {
...
@@ -662,7 +662,8 @@ public class JdbcStatement extends TraceObject implements Statement {
* Move to the next result set.
* Move to the next result set.
* This method always returns false.
* This method always returns false.
*
*
* @param current Statement.CLOSE_CURRENT_RESULT, Statement.KEEP_CURRENT_RESULT
* @param current Statement.CLOSE_CURRENT_RESULT,
* Statement.KEEP_CURRENT_RESULT,
* or Statement.CLOSE_ALL_RESULTS
* or Statement.CLOSE_ALL_RESULTS
* @return false
* @return false
*/
*/
...
@@ -672,7 +673,9 @@ public class JdbcStatement extends TraceObject implements Statement {
...
@@ -672,7 +673,9 @@ public class JdbcStatement extends TraceObject implements Statement {
switch
(
current
)
{
switch
(
current
)
{
case
Statement
.
CLOSE_CURRENT_RESULT
:
case
Statement
.
CLOSE_CURRENT_RESULT
:
case
Statement
.
CLOSE_ALL_RESULTS
:
case
Statement
.
CLOSE_ALL_RESULTS
:
if
(
resultSet
!=
null
)
{
resultSet
.
close
();
resultSet
.
close
();
}
break
;
break
;
case
Statement
.
KEEP_CURRENT_RESULT
:
case
Statement
.
KEEP_CURRENT_RESULT
:
// nothing to do
// nothing to do
...
...
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
352fb9ae
...
@@ -283,7 +283,6 @@ java org.h2.test.TestAll timer
...
@@ -283,7 +283,6 @@ java org.h2.test.TestAll timer
System
.
setProperty
(
"h2.check2"
,
"true"
);
System
.
setProperty
(
"h2.check2"
,
"true"
);
/*
/*
javadocs: check if there is a desc for a param, return...
JCR: for each node type, create a table; one 'dynamic' table with parameter;
JCR: for each node type, create a table; one 'dynamic' table with parameter;
option to cache the results
option to cache the results
<link rel="icon" type="image/png" href="/path/image.png">
<link rel="icon" type="image/png" href="/path/image.png">
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
352fb9ae
...
@@ -574,4 +574,4 @@ statisticlog activeobjects manske redeployment michael kaspersky datatext
...
@@ -574,4 +574,4 @@ statisticlog activeobjects manske redeployment michael kaspersky datatext
bleyl donald conservative offsets diabetes ansorg allocating osmond gluco
bleyl donald conservative offsets diabetes ansorg allocating osmond gluco
joachim mysqladmin sudo mysqld indicator wire ring relates expedites
joachim mysqladmin sudo mysqld indicator wire ring relates expedites
approximated approximation dvan dsn dobysoft ebean syswow tmueller dbbench
approximated approximation dvan dsn dobysoft ebean syswow tmueller dbbench
connecturl problematic transformation lazy
connecturl problematic transformation lazy querydsl squill empire liq
\ No newline at end of file
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论