提交 12b19df2 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 992fd176
......@@ -480,6 +480,7 @@ This is achieved using different database URLs. Settings in the URLs are not cas
jdbc:h2:tcp://&lt;server&gt;[:&lt;port&gt;]/[&lt;path&gt;]&lt;databaseName&gt;<br />
jdbc:h2:tcp://localhost/~/test<br />
jdbc:h2:tcp://dbserv:8084/~/sample
jdbc:h2:tcp://localhost/mem:test<br />
</td>
</tr>
<tr>
......
......@@ -231,6 +231,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Issue 146: Support merge join.
</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>Compact databases without having to close the database (vacuum).
</li><li>Support COSH, SINH, and TANH functions
</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
......@@ -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>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>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>
<h2>Not Planned</h2>
......
......@@ -443,6 +443,7 @@ Auto-creating new database can be disabled, see
<p>
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).
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.
</p>
......@@ -473,6 +474,8 @@ To remotely connect to a database using the TCP server, use the following driver
</li></ul>
<p>
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>
<h3>Starting the TCP Server within an Application</h3>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论