Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
7bd0e66d
提交
7bd0e66d
authored
12月 15, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
d69ecdc1
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
11 行增加
和
3 行删除
+11
-3
changelog.html
h2/src/docsrc/html/changelog.html
+7
-1
features.html
h2/src/docsrc/html/features.html
+1
-0
links.html
h2/src/docsrc/html/links.html
+0
-2
roadmap.html
h2/src/docsrc/html/roadmap.html
+3
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
7bd0e66d
...
@@ -18,7 +18,13 @@ Change Log
...
@@ -18,7 +18,13 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
In the server mode, BLOB and CLOB objects are no longer closed when the result set is closed
<ul><li>
Csv.write now formats date, time, and timestamp values using java.sql.Date / Time / Timestamp.toString().
Previously, ResultSet.getString() was used, which didn't work well for Oracle.
</li><li>
The shell script
<code>
h2.sh
</code>
can now be run from within a different directory.
Thanks a lot to Daniel Serodio for the patch!
</li><li>
The page size of a persistent database can now be queries using:
select * from information_schema.settings where name = 'info.PAGE_SIZE'
</li><li>
In the server mode, BLOB and CLOB objects are no longer closed when the result set is closed
(as required by the JDBC spec).
(as required by the JDBC spec).
</li></ul>
</li></ul>
...
...
h2/src/docsrc/html/features.html
浏览文件 @
7bd0e66d
...
@@ -1314,6 +1314,7 @@ Changing the log mechanism is not possible after the database is open, that mean
...
@@ -1314,6 +1314,7 @@ Changing the log mechanism is not possible after the database is open, that mean
executing the SQL statement
<code>
SET TRACE_LEVEL_FILE 4
</code>
executing the SQL statement
<code>
SET TRACE_LEVEL_FILE 4
</code>
when the database is already open will not have the desired effect.
when the database is already open will not have the desired effect.
To use SLF4J, all required jar files need to be in the classpath.
To use SLF4J, all required jar files need to be in the classpath.
The logger name is
<code>
h2database
</code>
.
If it does not work, check the file
<code>
<
database
>
.trace.db
</code>
for error messages.
If it does not work, check the file
<code>
<
database
>
.trace.db
</code>
for error messages.
</p>
</p>
...
...
h2/src/docsrc/html/links.html
浏览文件 @
7bd0e66d
...
@@ -57,8 +57,6 @@ But, in less than 15 minutes I had H2 up and working with little recoding of the
...
@@ -57,8 +57,6 @@ But, in less than 15 minutes I had H2 up and working with little recoding of the
Thanks..... "
Thanks..... "
</p>
</p>
http://groups.google.com/group/h2-database/browse_thread/thread/f4b19dfe31efcbe7/32c07dce1bd5a7a5
<h2
id=
"books"
>
Books
</h2>
<h2
id=
"books"
>
Books
</h2>
<a
href=
"http://code.google.com/p/seaminaction/wiki/GettingStarted"
>
<a
href=
"http://code.google.com/p/seaminaction/wiki/GettingStarted"
>
Seam In Action
</a>
Seam In Action
</a>
...
...
h2/src/docsrc/html/roadmap.html
浏览文件 @
7bd0e66d
...
@@ -57,6 +57,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
...
@@ -57,6 +57,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
PostgreSQL catalog: use BEFORE SELECT triggers instead of views over metadata tables.
</li><li>
PostgreSQL catalog: use BEFORE SELECT triggers instead of views over metadata tables.
</li><li>
Compatibility: automatically load functions from a script depending on the mode - see FunctionsMySQL.java, issue 211.
</li><li>
Compatibility: automatically load functions from a script depending on the mode - see FunctionsMySQL.java, issue 211.
</li><li>
Test very large databases and LOBs (up to 256 GB).
</li><li>
Test very large databases and LOBs (up to 256 GB).
</li><li>
Store all temp files in the temp directory.
</li><li>
Don't use temp files, specially not deleteOnExit (bug 4513817: File.deleteOnExit consumes memory).
</li><li>
Don't use temp files, specially not deleteOnExit (bug 4513817: File.deleteOnExit consumes memory).
Also to allow opening client / server (remote) connections when using LOBs.
Also to allow opening client / server (remote) connections when using LOBs.
</li><li>
Sequence: add features [NO] MINVALUE, MAXVALUE, CYCLE.
</li><li>
Sequence: add features [NO] MINVALUE, MAXVALUE, CYCLE.
...
@@ -570,6 +571,8 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
...
@@ -570,6 +571,8 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Read rows on demand: instead of reading the whole row, only read up to that column that is requested.
</li><li>
Read rows on demand: instead of reading the whole row, only read up to that column that is requested.
Keep an pointer to the data area and the column id that is already read.
Keep an pointer to the data area and the column id that is already read.
</li><li>
Long running transactions: log session id when detected.
</li><li>
Long running transactions: log session id when detected.
</li><li>
Optimization: "select id from test" should use the index on id even without "order by".
</li><li>
Issue 362: LIMIT support for UPDATE statements (MySQL compatibility).
</li></ul>
</li></ul>
<h2>
Not Planned
</h2>
<h2>
Not Planned
</h2>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论