Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
36702e9e
提交
36702e9e
authored
10月 10, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
c6adedd3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
8 行增加
和
4 行删除
+8
-4
changelog.html
h2/src/docsrc/html/changelog.html
+5
-2
roadmap.html
h2/src/docsrc/html/roadmap.html
+2
-1
tutorial.html
h2/src/docsrc/html/tutorial.html
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
36702e9e
...
@@ -18,10 +18,13 @@ Change Log
...
@@ -18,10 +18,13 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
When LOB objects are stored in the database (using the experimental setting h2.lobInDatabase),
<ul><li>
New experimental feature to speed up CREATE TABLE ... AS SELECT and INSERT INTO ... SELECT.
To enable the feature, set the system property h2.optimizeInsertFromSelect to true.
For large queries, performance can be doubled.
</li><li>
When LOB objects are stored in the database (using the experimental setting h2.lobInDatabase),
and using the MVCC mode, opening a database with uncommitted transactions could throw a NullPointerException.
and using the MVCC mode, opening a database with uncommitted transactions could throw a NullPointerException.
</li><li>
Support of stored procedures with OUT parameters in CallableStatement is implemented.
</li><li>
Support of stored procedures with OUT parameters in CallableStatement is implemented.
</li><li>
PreparedStatement.getMetaData() was not always consistent with resulting ResultSet.getMetaData().
</li><li>
PreparedStatement.getMetaData() was not always consistent with resulting ResultSet.getMetaData().
</li><li>
The build tool now uses JAVA_HOME for javac as well. Issue 233.
</li><li>
The build tool now uses JAVA_HOME for javac as well. Issue 233.
</li><li>
Opening and closing encrypted databases is now much faster.
</li><li>
Opening and closing encrypted databases is now much faster.
</li><li>
H2 Console: new experimental feature to support file download and upload,
</li><li>
H2 Console: new experimental feature to support file download and upload,
...
...
h2/src/docsrc/html/roadmap.html
浏览文件 @
36702e9e
...
@@ -41,6 +41,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
...
@@ -41,6 +41,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Use Lucene 3 by default.
</li><li>
Use Lucene 3 by default.
</li><li>
For RUNSCRIPT and SCRIPT (commands and tools), use UTF-8 by default.
</li><li>
For RUNSCRIPT and SCRIPT (commands and tools), use UTF-8 by default.
</li><li>
Set h2.maxMemoryRowsDistinct to a lower value.
</li><li>
Set h2.maxMemoryRowsDistinct to a lower value.
</li><li>
Enable h2.optimizeInsertFromSelect (speed up CREATE TABLE ... AS SELECT).
</li></ul>
</li></ul>
<h2>
Priority 1
</h2>
<h2>
Priority 1
</h2>
...
@@ -184,6 +185,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
...
@@ -184,6 +185,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Support updatable views with join on primary keys (to extend a table).
</li><li>
Support updatable views with join on primary keys (to extend a table).
</li><li>
Public interface for functions (not public static).
</li><li>
Public interface for functions (not public static).
</li><li>
Support reading the transaction log.
</li><li>
Support reading the transaction log.
</li><li>
Support GRANT SELECT, UPDATE ON *.
</li><li>
Eliminate undo log records if stored on disk (just one pointer per block, not per record).
</li><li>
Eliminate undo log records if stored on disk (just one pointer per block, not per record).
</li><li>
Feature matrix as in
<a
href=
"http://www.inetsoftware.de/products/jdbc/mssql/features/default.asp"
>
i-net software
</a>
.
</li><li>
Feature matrix as in
<a
href=
"http://www.inetsoftware.de/products/jdbc/mssql/features/default.asp"
>
i-net software
</a>
.
</li><li>
Updatable result set on table without primary key or unique index.
</li><li>
Updatable result set on table without primary key or unique index.
...
@@ -308,7 +310,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
...
@@ -308,7 +310,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
H2 Console: support configuration option for fixed width (monospace) font.
</li><li>
H2 Console: support configuration option for fixed width (monospace) font.
</li><li>
Native fulltext search: support analyzers (specially for Chinese, Japanese).
</li><li>
Native fulltext search: support analyzers (specially for Chinese, Japanese).
</li><li>
Automatically compact databases from time to time (as a background process).
</li><li>
Automatically compact databases from time to time (as a background process).
</li><li>
Support GRANT SELECT, UPDATE ON *.
</li><li>
Test Eclipse DTP.
</li><li>
Test Eclipse DTP.
</li><li>
H2 Console: autocomplete: keep the previous setting
</li><li>
H2 Console: autocomplete: keep the previous setting
</li><li>
MySQL, MS SQL Server compatibility: support case sensitive (mixed case) identifiers without quotes.
</li><li>
MySQL, MS SQL Server compatibility: support case sensitive (mixed case) identifiers without quotes.
...
...
h2/src/docsrc/html/tutorial.html
浏览文件 @
36702e9e
...
@@ -904,7 +904,7 @@ need to be available on the server side.
...
@@ -904,7 +904,7 @@ need to be available on the server side.
The
<code>
BACKUP
</code>
SQL statement and the
<code>
Backup
</code>
tool both create a zip file
The
<code>
BACKUP
</code>
SQL statement and the
<code>
Backup
</code>
tool both create a zip file
with all database files. However, the contents of this file are not human readable.
with all database files. However, the contents of this file are not human readable.
</p><p>
</p><p>
The resulting backup is transactionally consistent, meaning the consistency and atomicy rules apply.
The resulting backup is transactionally consistent, meaning the consistency and atomic
it
y rules apply.
</p>
</p>
<pre>
<pre>
BACKUP TO 'backup.zip'
BACKUP TO 'backup.zip'
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论