Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
3c2aeb8c
提交
3c2aeb8c
authored
8月 15, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
196a690c
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
13 行增加
和
6 行删除
+13
-6
advanced.html
h2/src/docsrc/html/advanced.html
+4
-4
changelog.html
h2/src/docsrc/html/changelog.html
+5
-1
roadmap.html
h2/src/docsrc/html/roadmap.html
+3
-1
tutorial.html
h2/src/docsrc/html/tutorial.html
+1
-0
没有找到文件。
h2/src/docsrc/html/advanced.html
浏览文件 @
3c2aeb8c
...
...
@@ -1334,10 +1334,10 @@ must contain NO_UPGRADE=TRUE.
This database has the following known limitations:
</p>
<ul>
<li>
Database file size limit
s (excluding BLOB and CLOB data)
:
With the default storage mechanism, the maximum file size is currently 256 GB for the data, and 256 GB for the index
.
W
ith the page store (experimental): 4 TB or higher.
</li><li>
BLOB and CLOB size limit:
every CLOB or BLOB can be up to 256 GB.
<li>
Database file size limit:
4 TB (using the default page size of 2 KB) or higher (when using a larger page size)
.
W
hen using the feature "h2.lobInDatabase" then this limit is including CLOB and BLOB data,
otherwise this limit is excluding CLOB and BLOB data, and
every CLOB or BLOB can be up to 256 GB.
</li><li>
The maximum file size for FAT or FAT32 file systems is 4 GB. That means when using FAT or FAT32,
the limit is 4 GB for the data. This is the limitation of the file system. The database does provide a
workaround for this problem, it is to use the file name prefix
<code>
split:
</code>
. In that case files are split into
...
...
h2/src/docsrc/html/changelog.html
浏览文件 @
3c2aeb8c
...
...
@@ -18,7 +18,11 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
EXPLAIN ANALYZE with an in-memory database threw an exception. Issue 216.
<ul><li>
The table INFORMATION_SCHEMA.SETTINGS now contains all H2-specific system properties
(the ones that start with "h2.") and that are explicitly set. Previously, some H2-specific settings
(for example h2.analyzeAuto) were missing in this list.
</li><li>
Translation: the new messages have been translated to Spanish. Thanks a lot to Dario Fassi!
</li><li>
EXPLAIN ANALYZE with an in-memory database threw an exception. Issue 216.
</li><li>
Data modifications (inserts, updates, and deletes) are now up to 5 times faster
because converting objects to byte arrays is avoided if possible.
</li><li>
LOG=0 is now a bit faster (previously undo log entries were still written).
...
...
h2/src/docsrc/html/roadmap.html
浏览文件 @
3c2aeb8c
...
...
@@ -181,6 +181,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</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>
Updatable result set on table without primary key or unique index.
</li><li>
Compatibility with Derby and PostgreSQL: VALUES(1), (2); SELECT * FROM (VALUES (1), (2)) AS myTable(c1). Issue 221.
</li><li>
Use LinkedList instead of ArrayList where applicable.
</li><li>
Allow execution time prepare for SELECT * FROM CSVREAD(?, 'columnNameString')
</li><li>
Support data type INTERVAL
...
...
@@ -202,7 +203,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Support linked tables to the current database
</li><li>
Support dynamic linked schema (automatically adding/updating/removing tables)
</li><li>
Clustering: adding a node should be very fast and without interrupting clients (very short lock)
</li><li>
Compatibility with Derby: VALUES(1), (2); SELECT * FROM (VALUES (1), (2)) AS myTable(c1)
</li><li>
Compatibility: # is the start of a single line comment (MySQL) but date quote (Access). Mode specific
</li><li>
Run benchmarks with JDK 1.5, JDK 1.6, java -server
</li><li>
Optimizations: faster hash function for strings, byte arrays
...
...
@@ -513,6 +513,8 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Support large GROUP BY operations. Issue 216.
</li><li>
Common Table Expression (CTE): support non-recursive queries. Issue 217.
</li><li>
Common Table Expression (CTE): avoid endless loop. Issue 218.
</li><li>
Common Table Expression (CTE): support multiple named queries. Issue 220.
</li><li>
Common Table Expression (CTE): identifier scope may be incorrect. Issue 222.
</li></ul>
<h2>
Not Planned
</h2>
...
...
h2/src/docsrc/html/tutorial.html
浏览文件 @
3c2aeb8c
...
...
@@ -1083,6 +1083,7 @@ org.h2.fulltext.FullText.searchData(conn, text, limit, offset);
<h3>
Using the Lucene Fulltext Search
</h3>
<p>
To use the Lucene full text search, you need the Lucene library in the classpath.
Currently only Apache Lucene version 2.x is supported.
How to do that depends on the application; if you use the H2 Console, you can add the Lucene
jar file to the environment variables
<code>
H2DRIVERS
</code>
or
<code>
CLASSPATH
</code>
.
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论