Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
fe2cf166
提交
fe2cf166
authored
4月 09, 2015
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation
上级
91064b32
全部展开
显示空白字符变更
内嵌
并排
正在显示
35 个修改的文件
包含
819 行增加
和
636 行删除
+819
-636
advanced.html
h2/src/docsrc/html/advanced.html
+13
-7
architecture.html
h2/src/docsrc/html/architecture.html
+1
-1
build.html
h2/src/docsrc/html/build.html
+1
-1
changelog.html
h2/src/docsrc/html/changelog.html
+20
-11
cheatSheet.html
h2/src/docsrc/html/cheatSheet.html
+1
-1
datatypes.html
h2/src/docsrc/html/datatypes.html
+1
-1
download.html
h2/src/docsrc/html/download.html
+1
-1
faq.html
h2/src/docsrc/html/faq.html
+1
-1
features.html
h2/src/docsrc/html/features.html
+2
-2
fragments.html
h2/src/docsrc/html/fragments.html
+1
-1
frame.html
h2/src/docsrc/html/frame.html
+1
-1
functions.html
h2/src/docsrc/html/functions.html
+1
-1
grammar.html
h2/src/docsrc/html/grammar.html
+1
-1
history.html
h2/src/docsrc/html/history.html
+1
-1
installation.html
h2/src/docsrc/html/installation.html
+1
-1
jaqu.html
h2/src/docsrc/html/jaqu.html
+1
-1
license.html
h2/src/docsrc/html/license.html
+7
-7
links.html
h2/src/docsrc/html/links.html
+1
-1
main.html
h2/src/docsrc/html/main.html
+1
-1
mainWeb.html
h2/src/docsrc/html/mainWeb.html
+1
-1
mvstore.html
h2/src/docsrc/html/mvstore.html
+1
-1
performance.html
h2/src/docsrc/html/performance.html
+4
-4
quickstart.html
h2/src/docsrc/html/quickstart.html
+1
-1
roadmap.html
h2/src/docsrc/html/roadmap.html
+1
-1
source.html
h2/src/docsrc/html/source.html
+1
-1
sourceError.html
h2/src/docsrc/html/sourceError.html
+1
-2
tutorial.html
h2/src/docsrc/html/tutorial.html
+1
-1
index.html
h2/src/docsrc/index.html
+1
-1
classes.html
h2/src/docsrc/javadoc/classes.html
+1
-1
index.html
h2/src/docsrc/javadoc/index.html
+1
-1
overview.html
h2/src/docsrc/javadoc/overview.html
+1
-1
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+265
-193
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+265
-193
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+216
-192
_messages_en.prop
h2/src/docsrc/textbase/_messages_en.prop
+1
-0
没有找到文件。
h2/src/docsrc/html/advanced.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Advanced
Advanced
</title>
</title>
...
@@ -316,17 +316,23 @@ To use the MVCC feature, append <code>;MVCC=TRUE</code> to the database URL:
...
@@ -316,17 +316,23 @@ To use the MVCC feature, append <code>;MVCC=TRUE</code> to the database URL:
jdbc:h2:~/test;MVCC=TRUE
jdbc:h2:~/test;MVCC=TRUE
</pre>
</pre>
<p>
<p>
MVCC is disabled by default. The MVCC feature is not fully tested yet.
The limitations of the MVCC mode are: it can not be used at the same time as
<code>
MULTI_THREADED=TRUE
</code>
;
the complete undo log (the list of uncommitted changes) must fit in memory when using multi-version concurrency.
The setting
<code>
MAX_MEMORY_UNDO
</code>
has no effect.
It is not possible to enable or disable this setting while the database is already open.
The setting must be specified in the first connection (the one that opens the database).
The setting must be specified in the first connection (the one that opens the database).
It is not possible to enable or disable this setting while the database is already open.
</p>
</p>
<p>
<p>
If MVCC is enabled, changing the lock mode (
<code>
LOCK_MODE
</code>
) has no effect.
If MVCC is enabled, changing the lock mode (
<code>
LOCK_MODE
</code>
) has no effect.
</p>
</p>
The MVCC mode is enabled by default in version 1.4.x,
with the default MVStore storage engine.
MVCC is disabled by default when using the PageStore storage engine
(which is the default in version 1.3.x).
The following applies when using the PageStore storage engine:
The MVCC feature is not fully tested yet.
The limitations of the MVCC mode are:
with the PageStore storage engine, it can not be used at the same time as
<code>
MULTI_THREADED=TRUE
</code>
;
the complete undo log (the list of uncommitted changes) must fit in memory when using multi-version concurrency.
The setting
<code>
MAX_MEMORY_UNDO
</code>
has no effect.
<h2
id=
"clustering"
>
Clustering / High Availability
</h2>
<h2
id=
"clustering"
>
Clustering / High Availability
</h2>
<p>
<p>
...
...
h2/src/docsrc/html/architecture.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Architecture
Architecture
</title>
</title>
...
...
h2/src/docsrc/html/build.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Build
Build
</title>
</title>
...
...
h2/src/docsrc/html/changelog.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Change Log
Change Log
</title>
</title>
...
@@ -20,7 +20,15 @@ Change Log
...
@@ -20,7 +20,15 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
MVStore: when committing a session that removed LOB values,
<ul><li>
MVStore: concurrent changes to the same row could result in
the exception "The transaction log might be corrupt for key ...".
This could only be reproduced with 3 or more threads.
</li><li>
Results with CLOB or BLOB data are no longer reused.
</li><li>
References to BLOB and CLOB objects now have a timeout.
The configuration setting is LOB_TIMEOUT (default 5 minutes).
This should avoid growing the database file if there are many queries that return BLOB or CLOB objects,
and the database is not closed for a longer time.
</li><li>
MVStore: when committing a session that removed LOB values,
changes were flushed unnecessarily.
changes were flushed unnecessarily.
</li><li>
Issue 610: possible integer overflow in WriteBuffer.grow().
</li><li>
Issue 610: possible integer overflow in WriteBuffer.grow().
</li><li>
Issue 609: the spatial index did not support NULL (ClassCastException).
</li><li>
Issue 609: the spatial index did not support NULL (ClassCastException).
...
@@ -37,7 +45,7 @@ Change Log
...
@@ -37,7 +45,7 @@ Change Log
running a SQL script generate by the Recover tool from a PageStore file
running a SQL script generate by the Recover tool from a PageStore file
failed with a strange error message (NullPointerException),
failed with a strange error message (NullPointerException),
now a clear error message is shown.
now a clear error message is shown.
<
li><li>
Issue 605: with version 1.4.186, opening a database could result in
<
/li><li>
Issue 605: with version 1.4.186, opening a database could result in
an endless loop in LobStorageMap.init.
an endless loop in LobStorageMap.init.
</li><li>
Queries that use the same table alias multiple times now work.
</li><li>
Queries that use the same table alias multiple times now work.
Before, the select expression list was expanded incorrectly.
Before, the select expression list was expanded incorrectly.
...
@@ -54,13 +62,14 @@ Change Log
...
@@ -54,13 +62,14 @@ Change Log
</li><li>
MVStore: use RandomAccessFile file system if the file name starts with "file:".
</li><li>
MVStore: use RandomAccessFile file system if the file name starts with "file:".
</li><li>
Allow DATEADD to take a long value for count when manipulating milliseconds.
</li><li>
Allow DATEADD to take a long value for count when manipulating milliseconds.
</li><li>
When using MV_STORE=TRUE and the SET CACHE_SIZE setting, the cache size was incorrectly set,
</li><li>
When using MV_STORE=TRUE and the SET CACHE_SIZE setting, the cache size was incorrectly set,
so that it was effectly 1024 times smaller than it should be.
so that it was effect
ive
ly 1024 times smaller than it should be.
</li><li>
Concurrent CREATE TABLE... IF NOT EXISTS in the presence of MULTI_THREAD=TRUE could
</li><li>
Concurrent CREATE TABLE... IF NOT EXISTS in the presence of MULTI_THREAD=TRUE could
throw an exception.
throw an exception.
</li><li>
Fix bug in MVStore when creating lots of temporary tables, where we could run out of
</li><li>
Fix bug in MVStore when creating lots of temporary tables, where we could run out of
transaction IDs.
transaction IDs.
</li><li>
Add support for PostgreSQL STRING_AGG function. Patch by Fred Aquiles.
</li><li>
Add support for PostgreSQL STRING_AGG function. Patch by Fred Aquiles.
</li><li>
Fix bug in "jdbc:h2:nioMemFS" isRoot() function
</li><li>
Fix bug in "jdbc:h2:nioMemFS" isRoot() function.
Also, the page size was increased to 64 KB.
</li></ul>
</li></ul>
<h2>
Version 1.4.186 Beta (2015-03-02)
</h2>
<h2>
Version 1.4.186 Beta (2015-03-02)
</h2>
...
...
h2/src/docsrc/html/cheatSheet.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
H2 Database Engine
H2 Database Engine
</title>
</title>
...
...
h2/src/docsrc/html/datatypes.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Data Types
Data Types
</title>
</title>
...
...
h2/src/docsrc/html/download.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Downloads
Downloads
</title>
</title>
...
...
h2/src/docsrc/html/faq.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Frequently Asked Questions
Frequently Asked Questions
</title>
</title>
...
...
h2/src/docsrc/html/features.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Features
Features
</title>
</title>
...
...
h2/src/docsrc/html/fragments.html
浏览文件 @
fe2cf166
...
@@ -5,7 +5,7 @@ Initial Developer: H2 Group
...
@@ -5,7 +5,7 @@ Initial Developer: H2 Group
-->
-->
<html><head>
<html><head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
Fragments
</title>
<title>
Fragments
</title>
<!-- [search] { -->
<!-- [search] { -->
...
...
h2/src/docsrc/html/frame.html
浏览文件 @
fe2cf166
...
@@ -5,7 +5,7 @@ Initial Developer: H2 Group
...
@@ -5,7 +5,7 @@ Initial Developer: H2 Group
-->
-->
<html><head>
<html><head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
H2 Database Engine
</title>
<title>
H2 Database Engine
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
...
...
h2/src/docsrc/html/functions.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Functions
Functions
</title>
</title>
...
...
h2/src/docsrc/html/grammar.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
SQL Grammar
SQL Grammar
</title>
</title>
...
...
h2/src/docsrc/html/history.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
History
History
</title>
</title>
...
...
h2/src/docsrc/html/installation.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Installation
Installation
</title>
</title>
...
...
h2/src/docsrc/html/jaqu.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
JaQu
JaQu
</title>
</title>
...
...
h2/src/docsrc/html/license.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
License
License
</title>
</title>
...
...
h2/src/docsrc/html/links.html
浏览文件 @
fe2cf166
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,7 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
H2 In Use and Links
H2 In Use and Links
</title>
</title>
...
...
h2/src/docsrc/html/main.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"description"
content=
"H2 is free SQL database written in Java"
/>
<meta
name=
"description"
content=
"H2 is free SQL database written in Java"
/>
<title>
<title>
H2 Database Engine
H2 Database Engine
...
...
h2/src/docsrc/html/mainWeb.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"description"
content=
"H2 is free SQL database written in Java"
/>
<meta
name=
"description"
content=
"H2 is free SQL database written in Java"
/>
<title>
<title>
H2 Database Engine
H2 Database Engine
...
...
h2/src/docsrc/html/mvstore.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
MVStore
MVStore
</title>
</title>
...
...
h2/src/docsrc/html/performance.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Performance
Performance
</title>
</title>
...
...
h2/src/docsrc/html/quickstart.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Quickstart
Quickstart
</title>
</title>
...
...
h2/src/docsrc/html/roadmap.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Roadmap
Roadmap
</title>
</title>
...
...
h2/src/docsrc/html/source.html
浏览文件 @
fe2cf166
...
@@ -4,7 +4,7 @@ and under the Eclipse Public License, Version 1.0
...
@@ -4,7 +4,7 @@ and under the Eclipse Public License, Version 1.0
Initial Developer: H2 Group
Initial Developer: H2 Group
-->
-->
<html><head>
<html><head>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
Source Code Viewer
</title>
<title>
Source Code Viewer
</title>
</head>
</head>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
...
...
h2/src/docsrc/html/sourceError.html
浏览文件 @
fe2cf166
...
@@ -6,8 +6,7 @@ Initial Developer: H2 Group
...
@@ -6,8 +6,7 @@ Initial Developer: H2 Group
-->
-->
<html><head>
<html><head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Error Analyzer
</title>
<title>
Error Analyzer
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
<style
type=
"text/css"
>
<style
type=
"text/css"
>
...
...
h2/src/docsrc/html/tutorial.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
<title>
Tutorial
Tutorial
</title>
</title>
...
...
h2/src/docsrc/index.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<html
xmlns=
"http://www.w3.org/1999/xhtml"
lang=
"en"
xml:lang=
"en"
>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"description"
content=
"H2 is free SQL database written in Java"
/>
<meta
name=
"description"
content=
"H2 is free SQL database written in Java"
/>
<title>
<title>
H2 Database Engine (redirect)
H2 Database Engine (redirect)
...
...
h2/src/docsrc/javadoc/classes.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html>
<html>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
H2 Documentation
</title>
<title>
H2 Documentation
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
</head>
</head>
...
...
h2/src/docsrc/javadoc/index.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html>
<html>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
H2 Documentation
</title>
<title>
H2 Documentation
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
</head>
</head>
...
...
h2/src/docsrc/javadoc/overview.html
浏览文件 @
fe2cf166
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
...
@@ -7,7 +7,7 @@ Initial Developer: H2 Group
<html>
<html>
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html;charset=utf-8"
/>
<meta
name=
viewport
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
API Overview
</title>
<title>
API Overview
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"stylesheet.css"
/>
</head>
</head>
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
fe2cf166
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
fe2cf166
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
fe2cf166
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_messages_en.prop
浏览文件 @
fe2cf166
...
@@ -66,6 +66,7 @@
...
@@ -66,6 +66,7 @@
90036=Sequence {0} not found
90036=Sequence {0} not found
90037=View {0} not found
90037=View {0} not found
90038=View {0} already exists
90038=View {0} already exists
90039=This CLOB or BLOB reference timed out: {0}
90040=Admin rights are required for this operation
90040=Admin rights are required for this operation
90041=Trigger {0} already exists
90041=Trigger {0} already exists
90042=Trigger {0} not found
90042=Trigger {0} not found
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论