Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
20720d48
提交
20720d48
authored
6月 15, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
8474e816
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
17 行增加
和
1 行删除
+17
-1
help.csv
h2/src/docsrc/help/help.csv
+1
-0
changelog.html
h2/src/docsrc/html/changelog.html
+6
-1
roadmap.html
h2/src/docsrc/html/roadmap.html
+3
-0
tutorial.html
h2/src/docsrc/html/tutorial.html
+7
-0
没有找到文件。
h2/src/docsrc/help/help.csv
浏览文件 @
20720d48
...
@@ -944,6 +944,7 @@ SAVEPOINT HALF_DONE
...
@@ -944,6 +944,7 @@ SAVEPOINT HALF_DONE
SET @variableName [ = ] expression
SET @variableName [ = ] expression
","
","
Updates a user-defined variable.
Updates a user-defined variable.
Variables are not persisted and session scoped, that means only visible from within the session in which they are defined.
This command does not commit a transaction, and rollback does not affect it.
This command does not commit a transaction, and rollback does not affect it.
","
","
SET @TOTAL=0
SET @TOTAL=0
...
...
h2/src/docsrc/html/changelog.html
浏览文件 @
20720d48
...
@@ -18,7 +18,12 @@ Change Log
...
@@ -18,7 +18,12 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
Improved Oracle compatibility for NVL2. Thanks again to litailang for the patch.
<ul><li>
BLOB: InputStream.skip is now more efficient in embedded mode.
</li><li>
The default expression of a column may no longer reference the table,
because a database with such a table couldn't be opened normally.
</li><li>
Referenced objects in check constraints could be dropped, which resulted
in a database that can't be opened normally.
</li><li>
Improved Oracle compatibility for NVL2. Thanks again to litailang for the patch.
</li><li>
CSVREAD now supports the option 'preserveWhitespace'.
</li><li>
CSVREAD now supports the option 'preserveWhitespace'.
</li><li>
Recursive queries with many rows could throw an IndexOutOfBoundsException.
</li><li>
Recursive queries with many rows could throw an IndexOutOfBoundsException.
</li><li>
The auto-server mode can't be combined with an in-memory database.
</li><li>
The auto-server mode can't be combined with an in-memory database.
...
...
h2/src/docsrc/html/roadmap.html
浏览文件 @
20720d48
...
@@ -433,6 +433,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
...
@@ -433,6 +433,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Maybe use PhantomReference instead of finalize.
</li><li>
Maybe use PhantomReference instead of finalize.
</li><li>
Database file name suffix: should only have one dot by default. Example: .h2db
</li><li>
Database file name suffix: should only have one dot by default. Example: .h2db
</li><li>
Issue 196: Function based indexes
</li><li>
Issue 196: Function based indexes
</li><li>
ALTER TABLE ... ADD COLUMN IF NOT EXISTS columnName.
</li><li>
Fix the disk space leak (killing the process at the exact right moment will increase
</li><li>
Fix the disk space leak (killing the process at the exact right moment will increase
the disk space usage; this space is not re-used). See TestDiskSpaceLeak.java
the disk space usage; this space is not re-used). See TestDiskSpaceLeak.java
</li><li>
ROWNUM: Oracle compatibility when used within a subquery. Issue 198.
</li><li>
ROWNUM: Oracle compatibility when used within a subquery. Issue 198.
...
@@ -541,6 +542,8 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
...
@@ -541,6 +542,8 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
PostgreSQL compatibility: support PgAdmin III (specially the function current_setting).
</li><li>
PostgreSQL compatibility: support PgAdmin III (specially the function current_setting).
</li><li>
MySQL compatibility: support TIMESTAMPADD.
</li><li>
MySQL compatibility: support TIMESTAMPADD.
</li><li>
Support SELECT ... FOR UPDATE with joins (supported by PostgreSQL, MySQL, and HSQLDB; but not Derby).
</li><li>
Support SELECT ... FOR UPDATE with joins (supported by PostgreSQL, MySQL, and HSQLDB; but not Derby).
</li><li>
TRANSACTION_ID() for in-memory databases.
</li><li>
TRANSACTION_ID() should be long (same as HSQLDB and PostgreSQL).
</li></ul>
</li></ul>
<h2>
Not Planned
</h2>
<h2>
Not Planned
</h2>
...
...
h2/src/docsrc/html/tutorial.html
浏览文件 @
20720d48
...
@@ -621,6 +621,12 @@ Another (more dangerous) solution is to set <code>useDatabaseLock</code> to fals
...
@@ -621,6 +621,12 @@ Another (more dangerous) solution is to set <code>useDatabaseLock</code> to fals
The project
<a
href=
"http://kenai.com/projects/nbh2"
>
H2 Database Engine Support For NetBeans
</a>
The project
<a
href=
"http://kenai.com/projects/nbh2"
>
H2 Database Engine Support For NetBeans
</a>
allows you to start and stop the H2 server from within the IDE.
allows you to start and stop the H2 server from within the IDE.
</p>
</p>
<p>
There is a known issue when using the Netbeans SQL Execution Window:
before executing a query, another query in the form
<code>
SELECT COUNT(*) FROM
<
query
>
</code>
is run.
This is a problem for queries that modify state, such as
<code>
SELECT SEQ.NEXTVAL
</code>
.
In this case, two sequence values are allocated instead of just one.
</p>
<h2
id=
"web_applications"
>
Using Databases in Web Applications
</h2>
<h2
id=
"web_applications"
>
Using Databases in Web Applications
</h2>
<p>
<p>
...
@@ -1249,6 +1255,7 @@ Variables that are not set evaluate to <code>NULL</code>.
...
@@ -1249,6 +1255,7 @@ Variables that are not set evaluate to <code>NULL</code>.
The data type of a user-defined variable is the data type
The data type of a user-defined variable is the data type
of the value assigned to it, that means it is not necessary (or possible) to declare variable names before using them.
of the value assigned to it, that means it is not necessary (or possible) to declare variable names before using them.
There are no restrictions on the assigned values; large objects (LOBs) are supported as well.
There are no restrictions on the assigned values; large objects (LOBs) are supported as well.
Rolling back a transaction does not affect the value of a user-defined variable.
</p>
</p>
<h2
id=
"date_time"
>
Date and Time
</h2>
<h2
id=
"date_time"
>
Date and Time
</h2>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论