Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
d3ba7776
提交
d3ba7776
authored
7月 22, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
b300bcb6
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
13 行增加
和
5 行删除
+13
-5
changelog.html
h2/src/docsrc/html/changelog.html
+3
-1
links.html
h2/src/docsrc/html/links.html
+5
-0
roadmap.html
h2/src/docsrc/html/roadmap.html
+3
-2
tutorial.html
h2/src/docsrc/html/tutorial.html
+2
-2
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
d3ba7776
...
...
@@ -18,7 +18,9 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
<ul><li>
The SQL statement "shutdown defag" could corrupt the database if the process was killed
while the shutdown was in progress. The same problem could occur when the database
setting "defrag_always" was used.
</li></ul>
<h2>
Version 1.3.158 (2011-07-17)
</h2>
...
...
h2/src/docsrc/html/links.html
浏览文件 @
d3ba7776
...
...
@@ -363,6 +363,11 @@ Jala</a><br />
Open source collection of JavaScript modules.
</p>
<p><a
href=
"http://jaspa.upv.es"
>
Jaspa
</a><br
/>
JAva SPAtial. Jaspa potentially brings around 200 spatial functions.
</p>
<p><a
href=
"http://code.google.com/p/javasimon"
>
Java Simon
</a><br
/>
Simple Monitoring API.
...
...
h2/src/docsrc/html/roadmap.html
浏览文件 @
d3ba7776
...
...
@@ -186,7 +186,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Support multiple directories (on different hard drives) for the same database
</li><li>
Server protocol: use challenge response authentication, but client sends hash(user+password) encrypted with response
</li><li>
Support EXEC[UTE] (doesn't return a result set, compatible to MS SQL Server)
</li><li>
Support native XML data type
</li><li>
Support native XML data type
- see http://en.wikipedia.org/wiki/SQL/XML
</li><li>
Support triggers with a string property or option: SpringTrigger, OSGITrigger
</li><li>
Ability to resize the cache array when resizing the cache
</li><li>
Time based cache writing (one second after writing the log)
...
...
@@ -531,7 +531,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
(compatibility with MySQL, PostgreSQL, HSQLDB; not Derby).
</li><li>
ARRAY data type: support Integer[] and so on in Java functions (currently only Object[] is supported).
</li><li>
MySQL compatibility: LOCK TABLES a READ, b READ - see also http://dev.mysql.com/doc/refman/5.0/en/lock-tables.html
</li><li>
Oracle compatibility: convert empty strings to null.
</li><li>
Oracle compatibility: convert empty strings to null.
Also convert an empty byte array to null, but not empty varray.
</li><li>
The HTML to PDF converter should use http://code.google.com/p/wkhtmltopdf/
</li><li>
Issue 303: automatically convert "X NOT IN(SELECT...)" to "NOT EXISTS(...)".
</li><li>
MySQL compatibility: update test1 t1, test2 t2 set t1.name=t2.name where t1.id=t2.id.
...
...
@@ -554,6 +554,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
GROUP BY columnNumber (similar to ORDER BY columnNumber) (MySQL, PostgreSQL, SQLite; not by HSQLDB and Derby).
</li><li>
Sybase / MS SQL Server compatibility: CONVERT(..) parameters are swapped.
</li><li>
Index conditions: WHERE AGE>1 should not scan through all rows with AGE=1.
</li><li>
PHP support: H2 should support PDO, or test with PostgreSQL PDO.
</li></ul>
<h2>
Not Planned
</h2>
...
...
h2/src/docsrc/html/tutorial.html
浏览文件 @
d3ba7776
...
...
@@ -1131,7 +1131,7 @@ INSERT INTO TEST VALUES(1, 'Hello World');
CALL FT_CREATE_INDEX('PUBLIC', 'TEST', NULL);
</pre>
<p>
PUBLIC is the schema name, TEST is the table name. The list of column names (co
lumn
separated) is optional,
PUBLIC is the schema name, TEST is the table name. The list of column names (co
mma
separated) is optional,
in this case all columns are indexed. The index is updated in realtime.
To search the index, use the following query:
</p>
...
...
@@ -1186,7 +1186,7 @@ INSERT INTO TEST VALUES(1, 'Hello World');
CALL FTL_CREATE_INDEX('PUBLIC', 'TEST', NULL);
</pre>
<p>
PUBLIC is the schema name, TEST is the table name. The list of column names (co
lumn
separated) is optional,
PUBLIC is the schema name, TEST is the table name. The list of column names (co
mma
separated) is optional,
in this case all columns are indexed. The index is updated in realtime. To search the index,
use the following query:
</p>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论