提交 64037f16 authored 作者: Thomas Mueller's avatar Thomas Mueller

prepare release

上级 67d8475d
...@@ -18,6 +18,10 @@ Change Log ...@@ -18,6 +18,10 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>-
</li></ul>
<h2>Version 1.1.113 (2009-05-21)</h2>
<ul><li>Shell tool: the built-in commands EXIT, HELP, ?, LIST, and so on didn't <ul><li>Shell tool: the built-in commands EXIT, HELP, ?, LIST, and so on didn't
work with a semicolon at the end. work with a semicolon at the end.
</li><li>JDK 1.5 is now required to build the jar file. However it is still possible to create </li><li>JDK 1.5 is now required to build the jar file. However it is still possible to create
...@@ -41,7 +45,7 @@ Change Log ...@@ -41,7 +45,7 @@ Change Log
was loaded at the beginning of the test to collect results, now it is loaded at the very end. was loaded at the beginning of the test to collect results, now it is loaded at the very end.
Thanks to Fred Toussi from HSQLDB for reporting those problems. However the changed Thanks to Fred Toussi from HSQLDB for reporting those problems. However the changed
do not affect the relative performance. do not affect the relative performance.
</li><li>H2 Console: command line settings are now longer stored in the properties file. </li><li>H2 Console: command line settings are no longer stored in the properties file.
They are now only used for the current process, except if they are explicitly saved. They are now only used for the current process, except if they are explicitly saved.
</li><li>Cache: support for a second level soft-references cache. </li><li>Cache: support for a second level soft-references cache.
To enable it, append ;CACHE_TYPE=SOFT_LRU (or SOFT_TQ) to the database URL, or To enable it, append ;CACHE_TYPE=SOFT_LRU (or SOFT_TQ) to the database URL, or
...@@ -49,7 +53,6 @@ Change Log ...@@ -49,7 +53,6 @@ Change Log
Enabling the second level cache reduces performance for Enabling the second level cache reduces performance for
small databases, but speeds up large databases. It makes sense to use it small databases, but speeds up large databases. It makes sense to use it
if the available memory size is unknown. Thanks a lot to Jan Kotek! if the available memory size is unknown. Thanks a lot to Jan Kotek!
</li><li>
</li></ul> </li></ul>
<h2>Version 1.1.112 (2009-05-01)</h2> <h2>Version 1.1.112 (2009-05-01)</h2>
......
...@@ -14,22 +14,22 @@ public class Constants { ...@@ -14,22 +14,22 @@ public class Constants {
/** /**
* The build id is incremented for each public release. * The build id is incremented for each public release.
*/ */
public static final int BUILD_ID = 112; public static final int BUILD_ID = 113;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
*/ */
public static final int BUILD_ID_STABLE = 111; public static final int BUILD_ID_STABLE = 112;
/** /**
* The build date is updated for each public release. * The build date is updated for each public release.
*/ */
public static final String BUILD_DATE = "2009-05-01"; public static final String BUILD_DATE = "2009-05-21";
/** /**
* The build date is updated for each public release. * The build date is updated for each public release.
*/ */
public static final String BUILD_DATE_STABLE = "2009-04-10"; public static final String BUILD_DATE_STABLE = "2009-05-01";
/** /**
* The TCP protocol version number 5. This protocol is used by the TCP * The TCP protocol version number 5. This protocol is used by the TCP
......
...@@ -184,7 +184,7 @@ public abstract class BaseIndex extends SchemaObjectBase implements Index { ...@@ -184,7 +184,7 @@ public abstract class BaseIndex extends SchemaObjectBase implements Index {
* @return the cursor * @return the cursor
* @throws SQLException * @throws SQLException
*/ */
public Cursor findNext(Session session, SearchRow first, SearchRow last) throws SQLException { public Cursor findNext(Session session, SearchRow higherThan, SearchRow last) throws SQLException {
throw Message.throwInternalError(); throw Message.throwInternalError();
} }
......
...@@ -13,6 +13,38 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' , ...@@ -13,6 +13,38 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE TABLE ITEM(ID INT PRIMARY KEY, TITLE VARCHAR, ISSUED TIMESTAMP, DESC VARCHAR); CREATE TABLE ITEM(ID INT PRIMARY KEY, TITLE VARCHAR, ISSUED TIMESTAMP, DESC VARCHAR);
INSERT INTO ITEM VALUES(63,
'New version available: 1.1.113 (2009-05-21)', '2009-05-21 12:00:00',
$$A new version of H2 is available for <a href="http://www.h2database.com">download</a>.
(You may have to click 'Refresh').
<br />
<b>Changes and new functionality:</b>
<ul><li>This is the last version compiled against Java 1.4.
</li><li>JDK 1.5 is now required to build the jar file.
</li><li>A second level soft-references cache is now supported.
It speeds up large databases, but reduces performance for small
databases. Thanks a lot to Jan Kotek for the patch!
</li><li>MS SQL Server compatibility: support for linked tables with
NVARCHAR, NCHAR, NCLOB, and LONGNVARCHAR.
</li><li>Android workaround for read-only databases in zip files.
</li><li>Calling execute() or prepareStatement() with null as the
SQL statement now throws an exception.
</li><li>H2 Console: command line settings are no longer stored.
</li></ul>
<b>Bugfixes:</b>
<ul><li>When deleting or updating many rows in a table, the space
in the index file was not re-used.
</li><li>Identifiers with a digit and then a dollar sign didn't work.
</li><li>Shell tool: the built-in commands didn't work with a semicolon.
</li><li>Benchmark: the number of executed statements was incorrect.
</li></ul>
For details, see the 'Change Log' at
http://www.h2database.com/html/changelog.html
<br />
For future plans, see the 'Roadmap' page at
http://www.h2database.com/html/roadmap.html
$$);
INSERT INTO ITEM VALUES(62, INSERT INTO ITEM VALUES(62,
'New version available: 1.1.112 (2009-05-01)', '2009-05-01 12:00:00', 'New version available: 1.1.112 (2009-05-01)', '2009-05-01 12:00:00',
$$A new version of H2 is available for <a href="http://www.h2database.com">download</a>. $$A new version of H2 is available for <a href="http://www.h2database.com">download</a>.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论