Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
12b19df2
提交
12b19df2
authored
5月 25, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
992fd176
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
14 行增加
和
0 行删除
+14
-0
features.html
h2/src/docsrc/html/features.html
+1
-0
roadmap.html
h2/src/docsrc/html/roadmap.html
+10
-0
tutorial.html
h2/src/docsrc/html/tutorial.html
+3
-0
没有找到文件。
h2/src/docsrc/html/features.html
浏览文件 @
12b19df2
...
@@ -480,6 +480,7 @@ This is achieved using different database URLs. Settings in the URLs are not cas
...
@@ -480,6 +480,7 @@ This is achieved using different database URLs. Settings in the URLs are not cas
jdbc:h2:tcp://
<
server
>
[:
<
port
>
]/[
<
path
>
]
<
databaseName
>
<br
/>
jdbc:h2:tcp://
<
server
>
[:
<
port
>
]/[
<
path
>
]
<
databaseName
>
<br
/>
jdbc:h2:tcp://localhost/~/test
<br
/>
jdbc:h2:tcp://localhost/~/test
<br
/>
jdbc:h2:tcp://dbserv:8084/~/sample
jdbc:h2:tcp://dbserv:8084/~/sample
jdbc:h2:tcp://localhost/mem:test
<br
/>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
...
...
h2/src/docsrc/html/roadmap.html
浏览文件 @
12b19df2
...
@@ -231,6 +231,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
...
@@ -231,6 +231,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Issue 146: Support merge join.
</li><li>
Issue 146: Support merge join.
</li><li>
Integrate spatial functions from http://geosysin.iict.ch/irstv-trac/wiki/H2spatial/Download
</li><li>
Integrate spatial functions from http://geosysin.iict.ch/irstv-trac/wiki/H2spatial/Download
</li><li>
Cluster: hot deploy (adding a node at runtime)
</li><li>
Cluster: hot deploy (adding a node at runtime)
</li><li>
Compact databases without having to close the database (vacuum).
</li><li>
Support COSH, SINH, and TANH functions
</li><li>
Support COSH, SINH, and TANH functions
</li><li>
Oracle: support DECODE method (convert to CASE WHEN).
</li><li>
Oracle: support DECODE method (convert to CASE WHEN).
</li><li>
Native search: support "phrase search", wildcard search (* and ?), case-insensitive search, boolean operators, and grouping
</li><li>
Native search: support "phrase search", wildcard search (* and ?), case-insensitive search, boolean operators, and grouping
...
@@ -474,6 +475,15 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
...
@@ -474,6 +475,15 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Allow to access the database over HTTP (possibly using port 80) and a servlet in a REST way.
</li><li>
Allow to access the database over HTTP (possibly using port 80) and a servlet in a REST way.
</li><li>
ODBC: encrypted databases are not supported because the ;CIPHER= can not be set.
</li><li>
ODBC: encrypted databases are not supported because the ;CIPHER= can not be set.
</li><li>
Support CLOB and BLOB update, specially conn.createBlob().setBinaryStream(1);
</li><li>
Support CLOB and BLOB update, specially conn.createBlob().setBinaryStream(1);
</li><li>
Triggers: support user defined execution order. Oracle:
CREATE OR REPLACE TRIGGER TRI_TEST_2 BEFORE INSERT
ON TEST FOR EACH ROW FOLLOWS TRI_TEST_1.
MS SQL Server: sp_settriggerorder.
SQL specifies that multiple triggers should be fired in time-of-creation order.
PostgreSQL uses name order, which was judged to be more convenient.
Derby: triggers are fired in the order in which they were created.
</li><li>
PostgreSQL compatibility: combine "users" and "roles". See:
http://www.postgresql.org/docs/8.1/interactive/user-manag.html
</li></ul>
</li></ul>
<h2>
Not Planned
</h2>
<h2>
Not Planned
</h2>
...
...
h2/src/docsrc/html/tutorial.html
浏览文件 @
12b19df2
...
@@ -443,6 +443,7 @@ Auto-creating new database can be disabled, see
...
@@ -443,6 +443,7 @@ Auto-creating new database can be disabled, see
<p>
<p>
H2 currently supports three server: a web server (for the H2 Console),
H2 currently supports three server: a web server (for the H2 Console),
a TCP server (for client/server connections) and an PG server (for PostgreSQL clients).
a TCP server (for client/server connections) and an PG server (for PostgreSQL clients).
Please note that only the web server supports browser connections.
The servers can be started in different ways, one is using the
<code>
Server
</code>
tool.
The servers can be started in different ways, one is using the
<code>
Server
</code>
tool.
</p>
</p>
...
@@ -473,6 +474,8 @@ To remotely connect to a database using the TCP server, use the following driver
...
@@ -473,6 +474,8 @@ To remotely connect to a database using the TCP server, use the following driver
</li></ul>
</li></ul>
<p>
<p>
For details about the database URL, see also in Features.
For details about the database URL, see also in Features.
Please note that you can't connection with a web browser to this URL.
You can only connect using a H2 client (over JDBC).
</p>
</p>
<h3>
Starting the TCP Server within an Application
</h3>
<h3>
Starting the TCP Server within an Application
</h3>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论