提交 09b4f932 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 3f4f0e3f
...@@ -24,7 +24,8 @@ Change Log ...@@ -24,7 +24,8 @@ Change Log
<a href="http://h2database.com/h2mig_pagestore_addon.jar">http://h2database.com/h2mig_pagestore_addon.jar</a> <a href="http://h2database.com/h2mig_pagestore_addon.jar">http://h2database.com/h2mig_pagestore_addon.jar</a>
</li><li>The MultiDimension tools was extended with a few helper methods. </li><li>The MultiDimension tools was extended with a few helper methods.
The API was unified a bit. The API was unified a bit.
</li><li>ODBC: additional connection settings can now be added to the database name. </li><li>ODBC: MS Access could not link to a table with a name containing '_'.
</li><li>ODBC: additional connection settings can now be added to the database name.
Example: ~/test;cipher=xtea. Therefore, encrypted databases are supported. Example: ~/test;cipher=xtea. Therefore, encrypted databases are supported.
</li><li>Local temporary tables can now be created without having to commit a transaction </li><li>Local temporary tables can now be created without having to commit a transaction
using CREATE LOCAL TEMPORARY TABLE TEMP(ID INT PRIMARY KEY) TRANSACTIONAL. using CREATE LOCAL TEMPORARY TABLE TEMP(ID INT PRIMARY KEY) TRANSACTIONAL.
...@@ -36,6 +37,7 @@ Change Log ...@@ -36,6 +37,7 @@ Change Log
</li><li>UNION queries where the first query contains a nested query were parsed incorrectly. </li><li>UNION queries where the first query contains a nested query were parsed incorrectly.
Example: "select 1 from (select 2 from dual) union select 3 from dual" was parsed as Example: "select 1 from (select 2 from dual) union select 3 from dual" was parsed as
"select 1 from ((select 2 from dual) union select 3 from dual)". Fixed. "select 1 from ((select 2 from dual) union select 3 from dual)". Fixed.
</li><li>Support ALTER SCHEMA name RENAME TO newName (rename schema). (patch from Kerry Sainsbury)
</li></ul> </li></ul>
<h2>Version 1.2.138 (2010-06-27)</h2> <h2>Version 1.2.138 (2010-06-27)</h2>
...@@ -59,7 +61,6 @@ Change Log ...@@ -59,7 +61,6 @@ Change Log
</li><li>Cluster: non-admin users could not connect when one of the cluster node was stopped. Issue 206. </li><li>Cluster: non-admin users could not connect when one of the cluster node was stopped. Issue 206.
</li><li>DROP VIEW now supports the CASCADE and RESTRICT clauses (patch from Kerry Sainsbury) </li><li>DROP VIEW now supports the CASCADE and RESTRICT clauses (patch from Kerry Sainsbury)
</li><li>CREATE VIEW now supports the OR REPLACE clause (patch from Kerry Sainsbury) </li><li>CREATE VIEW now supports the OR REPLACE clause (patch from Kerry Sainsbury)
</li><li>Support ALTER SCHEMA name RENAME TO newName (rename schema). (patch from Kerry Sainsbury)
</li><li>Build tool: ability to only run one test using the -Dtest=className setting. </li><li>Build tool: ability to only run one test using the -Dtest=className setting.
eg: build -Dtest=org.h2.test.db.TestViewDropView test (patch from Kerry Sainsbury). eg: build -Dtest=org.h2.test.db.TestViewDropView test (patch from Kerry Sainsbury).
</li></ul> </li></ul>
......
...@@ -36,6 +36,8 @@ Tutorial ...@@ -36,6 +36,8 @@ Tutorial
Using EclipseLink</a><br /> Using EclipseLink</a><br />
<a href="#using_activemq"> <a href="#using_activemq">
Using Apache ActiveMQ</a><br /> Using Apache ActiveMQ</a><br />
<a href="#using_netbeans">
Using H2 within NetBeans</a><br />
<a href="#web_applications"> <a href="#web_applications">
Using Databases in Web Applications</a><br /> Using Databases in Web Applications</a><br />
<a href="#csv"> <a href="#csv">
...@@ -582,6 +584,12 @@ However, using the MVCC mode will again result in the same problem. Therefore, p ...@@ -582,6 +584,12 @@ However, using the MVCC mode will again result in the same problem. Therefore, p
Another (more dangerous) solution is to set <code>useDatabaseLock</code> to false. Another (more dangerous) solution is to set <code>useDatabaseLock</code> to false.
</p> </p>
<h2 id="using_netbeans">Using H2 within NetBeans</h2>
<p>
The project <a href="">H2 Database Engine Support For NetBeans</a>
allows you to start and stop the H2 server from within the IDE.
</p>
<h2 id="web_applications">Using Databases in Web Applications</h2> <h2 id="web_applications">Using Databases in Web Applications</h2>
<p> <p>
There are multiple ways to access a database from within web There are multiple ways to access a database from within web
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论