Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
ee9a2829
提交
ee9a2829
authored
8月 27, 2014
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Formatting / documentation.
上级
07dc204a
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
891 行增加
和
853 行删除
+891
-853
changelog.html
h2/src/docsrc/html/changelog.html
+11
-2
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+294
-282
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+294
-282
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+286
-282
TestMetaData.java
h2/src/test/org/h2/test/jdbc/TestMetaData.java
+2
-2
TestPreparedStatement.java
h2/src/test/org/h2/test/jdbc/TestPreparedStatement.java
+1
-1
TestResultSet.java
h2/src/test/org/h2/test/jdbc/TestResultSet.java
+1
-1
TestStatement.java
h2/src/test/org/h2/test/jdbc/TestStatement.java
+1
-1
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
ee9a2829
...
...
@@ -17,9 +17,13 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
Issue 573: Add implementation for Methods "isWrapperFor()" and "unwrap()" in
other JDBC classes.
<ul><li>
Issue 573: Add implementation for Methods "isWrapperFor()" and "unwrap()" in
other JDBC classes.
</li><li>
Issue 572: MySQL compatibility for "order by" in update statements.
</li><li>
The change in JDBC escape processing in version 1.4.181 affects both the parser
(which is running on the server) and the JDBC API (which is running on the client).
If you (or a tool you use) use the syntax "{t 'time}", or "{ts 'timestamp'}", or "{d 'data'}",
then both the client and the server need to be upgraded to version 1.4.181 or later.
</li></ul>
<h2>
Version 1.4.181 Beta (2014-08-06)
</h2>
...
...
@@ -30,6 +34,11 @@ Change Log
</li><li>
The JDBC escape syntax {ts 'value'} did not interpret the value as a timestamp.
The same for {d 'value'} (for date) and {t 'value'} (for time).
Thanks to Lukas Eder for reporting the issue.
The following problem was detected after version 1.4.181 was released:
The change in JDBC escape processing affects both the parser (which is running on the server)
and the JDBC API (which is running on the client).
If you (or a tool you use) use the syntax {t 'time'}, or {ts 'timestamp'}, or {d 'date'},
then both the client and the server need to be upgraded to version 1.4.181 or later.
</li><li>
File system abstraction: support replacing existing files using move
(currently not for Windows).
</li><li>
The statement "shutdown defrag" now compresses the database (with the MVStore).
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
ee9a2829
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
ee9a2829
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
ee9a2829
差异被折叠。
点击展开。
h2/src/test/org/h2/test/jdbc/TestMetaData.java
浏览文件 @
ee9a2829
...
...
@@ -57,7 +57,7 @@ public class TestMetaData extends TestBase {
testSessionsUncommitted
();
testQueryStatistics
();
}
private
void
testUnwrap
()
throws
SQLException
{
Connection
conn
=
getConnection
(
"metaData"
);
Statement
stat
=
conn
.
createStatement
();
...
...
@@ -985,7 +985,7 @@ public class TestMetaData extends TestBase {
private
void
testGeneral
()
throws
SQLException
{
Connection
conn
=
getConnection
(
"metaData"
);
DatabaseMetaData
meta
=
conn
.
getMetaData
();
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"CREATE TABLE TEST(ID INT PRIMARY KEY, NAME VARCHAR(255))"
);
...
...
h2/src/test/org/h2/test/jdbc/TestPreparedStatement.java
浏览文件 @
ee9a2829
...
...
@@ -96,7 +96,7 @@ public class TestPreparedStatement extends TestBase {
testPreparedStatementWithLiteralsNone
();
deleteDb
(
"preparedStatement"
);
}
private
void
testUnwrap
(
Connection
conn
)
throws
SQLException
{
assertTrue
(
conn
.
isWrapperFor
(
Object
.
class
));
assertTrue
(
conn
.
isWrapperFor
(
Connection
.
class
));
...
...
h2/src/test/org/h2/test/jdbc/TestResultSet.java
浏览文件 @
ee9a2829
...
...
@@ -102,7 +102,7 @@ public class TestResultSet extends TestBase {
deleteDb
(
"resultSet"
);
}
private
void
testUnwrap
()
throws
SQLException
{
ResultSet
rs
=
stat
.
executeQuery
(
"select 1"
);
assertTrue
(
rs
.
isWrapperFor
(
Object
.
class
));
...
...
h2/src/test/org/h2/test/jdbc/TestStatement.java
浏览文件 @
ee9a2829
...
...
@@ -52,7 +52,7 @@ public class TestStatement extends TestBase {
conn
.
close
();
deleteDb
(
"statement"
);
}
private
void
testUnwrap
()
throws
SQLException
{
Statement
stat
=
conn
.
createStatement
();
assertTrue
(
stat
.
isWrapperFor
(
Object
.
class
));
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
ee9a2829
...
...
@@ -762,3 +762,4 @@ exploit noise ongoing disclaimers shrinks remedy party desirable timely construe
deque synchronizers affero kevent nikolaj hohmuth grajcar jens fogh hostnames
operate resized jni yjp ownable starvation reaper biased introduce epoll hangs
compaction aggressive powerful traversing pietrzak michi karl rewriting consequences
linearly patching perfect hole
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论