提交 e49f2d9d authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 e59f6ba5
...@@ -18,7 +18,12 @@ Change Log ...@@ -18,7 +18,12 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>Database-level connection settings could only be set in the database URL, <ul><li>Issue 265: Linked tables: auto-reconnect if the backside connection is lost
(workaround for the MySQL problem that disconnects after 8 hours of inactivity).
</li><li>Linked tables: the index conditions was sometimes not used when querying the remote database.
</li><li>Issue 294: OSGi: the versions were missing in manifest package exports.
</li><li>The option -baseDir didn't work with symbolic links.
</li><li>Database-level connection settings could only be set in the database URL,
but not using the Properties parameter of DriverManaget.getConnection(String url, Properties info). but not using the Properties parameter of DriverManaget.getConnection(String url, Properties info).
</li></ul> </li></ul>
......
...@@ -743,7 +743,7 @@ Fulltext search was not yet tested, however the native fulltext search should wo ...@@ -743,7 +743,7 @@ Fulltext search was not yet tested, however the native fulltext search should wo
<p> <p>
Reasons to use H2 instead of SQLite are: Reasons to use H2 instead of SQLite are:
</p> </p>
<ul><li>Full Unicode support including UPPER() and LOWER() (unlike SQLite). <ul><li>Full Unicode support including UPPER() and LOWER().
</li><li>Streaming API for BLOB and CLOB data. </li><li>Streaming API for BLOB and CLOB data.
</li><li>Fulltext search. </li><li>Fulltext search.
</li><li>Multiple connections. </li><li>Multiple connections.
...@@ -777,6 +777,9 @@ Class.forName("org.h2.Driver"); ...@@ -777,6 +777,9 @@ Class.forName("org.h2.Driver");
conn = DriverManager.getConnection(url); conn = DriverManager.getConnection(url);
... ...
</pre> </pre>
<p>
Limitations: Using a connection pool is currently not supported, because the required <code>javax.sql.</code> classes are not available on Android.
</p>
<h2 id="csv">CSV (Comma Separated Values) Support</h2> <h2 id="csv">CSV (Comma Separated Values) Support</h2>
<p> <p>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论