提交 3e8f3bf4 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 8c989d7f
...@@ -67,8 +67,6 @@ Features ...@@ -67,8 +67,6 @@ Features
Read Only Databases</a><br /> Read Only Databases</a><br />
<a href="#database_in_zip"> <a href="#database_in_zip">
Read Only Databases in Zip or Jar File</a><br /> Read Only Databases in Zip or Jar File</a><br />
<a href="#low_disk_space">
Graceful Handling of Low Disk Space Situations</a><br />
<a href="#computed_columns"> <a href="#computed_columns">
Computed Columns / Function Based Index</a><br /> Computed Columns / Function Based Index</a><br />
<a href="#multi_dimensional"> <a href="#multi_dimensional">
...@@ -1367,17 +1365,6 @@ because random access in compressed files is not possible. ...@@ -1367,17 +1365,6 @@ because random access in compressed files is not possible.
See also the sample application <a href="http://code.google.com/p/h2database/source/browse/trunk/h2/src/test/org/h2/samples/ReadOnlyDatabaseInZip.java">ReadOnlyDatabaseInZip</a>. See also the sample application <a href="http://code.google.com/p/h2database/source/browse/trunk/h2/src/test/org/h2/samples/ReadOnlyDatabaseInZip.java">ReadOnlyDatabaseInZip</a>.
</p> </p>
<h2 id="low_disk_space">Graceful Handling of Low Disk Space Situations</h2>
<p>
If the database needs more disk space, it calls the database event listener if one is installed.
The application may then delete temporary files, or display a message and wait until
the user has resolved the problem. To install a listener, run the SQL statement
<code>SET DATABASE_EVENT_LISTENER</code> or use a database URL of the form
<code>jdbc:h2:~/test;DATABASE_EVENT_LISTENER='com.acme.DbListener'</code>
(the quotes around the class name are required).
See also the <code>DatabaseEventListener</code> API.
</p>
<h3>Opening a Corrupted Database</h3> <h3>Opening a Corrupted Database</h3>
<p> <p>
If a database cannot be opened because the boot info (the SQL script that is run at startup) If a database cannot be opened because the boot info (the SQL script that is run at startup)
......
...@@ -150,7 +150,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>. ...@@ -150,7 +150,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Java static code analysis: http://www.eclipse.org/tptp/ </li><li>Java static code analysis: http://www.eclipse.org/tptp/
</li><li>Compatibility for CREATE SCHEMA AUTHORIZATION. </li><li>Compatibility for CREATE SCHEMA AUTHORIZATION.
</li><li>Implement Clob / Blob truncate and the remaining functionality. </li><li>Implement Clob / Blob truncate and the remaining functionality.
</li><li>Tree join functionality.
</li><li>Add multiple columns at the same time with ALTER TABLE .. ADD .. ADD ... </li><li>Add multiple columns at the same time with ALTER TABLE .. ADD .. ADD ...
</li><li>File locking: writing a system property to detect concurrent access from the same VM (different classloaders). </li><li>File locking: writing a system property to detect concurrent access from the same VM (different classloaders).
</li><li>Pure SQL triggers (example: update parent table if the child table is changed). </li><li>Pure SQL triggers (example: update parent table if the child table is changed).
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论