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

--no commit message

--no commit message
上级 65750fe8
......@@ -15,7 +15,7 @@ Change Log
<h2>Next Version (unreleased)</h2>
<ul>
<li>
<li>-
</li></ul>
<h2>Version 1.0.67 (2008-02-22)</h2>
......@@ -24,8 +24,8 @@ Change Log
</li><li>CREATE TABLE AS SELECT now supports specifying the column list and data types.
</li><li>Connecting to a TCP server and at shutting it down at the same time could cause a Java level deadlock.
</li><li>A user now has all rights on his own local temporary tables.
</li><li>CSV tool now support lineSeparator.
</li><li>When using multiple connections, empty space was reused too early sometimes. This was sometimes causing database corruption.
</li><li>The CSV tool now supports a custom lineSeparator.
</li><li>When using multiple connections, empty space was reused too early sometimes. This could corrupt the database when recovering.
</li><li>The H2 Console has been translated to Dutch. Thanks a lot to Remco Schoen!
</li><li>Databases can now be opened even if trigger classes are not in the classpath. The exception is thrown when trying to fire the trigger.
</li><li>Opening databases with ACCESS_MODE_DATA=r is now supported. In this case the database is read-only, but the files don't not need to be read-only.
......@@ -36,7 +36,6 @@ Change Log
</li><li>ALTER TABLE ALTER COLUMN RESTART and ALTER SEQUENCE now support parameters (any expressions).
</li><li>When setting the base directory on the command line, the user directory prefix ('~') was ignored.
</li><li>The DbStarter servlet didn't start the TCP listener even if configured.
</li><li>Recovery could fail when using multiple connections and larger transactions that deleted many rows.
</li><li>Statement.setQueryTimeout() is now supported.
</li><li>New session setting QUERY_TIMEOUT, and new system property h2.maxQueryTimeout.
</li><li>Changing the transaction log level (SET LOG) is now written to the trace file by default.
......
......@@ -41,7 +41,7 @@ Welcome to H2, the free SQL database. The main feature of H2 are:
<tr><td style="border: 0px; background-color: #eee;">
<a href="http://www.h2database.com/h2-2008-02-22.zip"><img border="1" src="images/download.png" alt="download" /></a>
</td><td style="vertical-align: middle; border: 0px; background-color: #eee;">
<a href="http://www.h2database.com/h2-2008-02-22.zip">All platforms (zip, 4.0 MB)</a>
<a href="http://www.h2database.com/h2-2008-02-22.zip">All platforms (zip, 4.1 MB)</a>
</td></tr>
<tr><td style="border: 0px; background-color: #eee;" colspan="2">
<a href="download.html">All Downloads</a>
......
......@@ -955,59 +955,59 @@ Change Log
@changelog_1001_h2
Next Version (unreleased)
@changelog_1002_h2
Version 1.0.67 (2008-02-22)
@changelog_1002_li
-
@changelog_1003_li
New function FILE_READ to read a file or from an URL. Both binary and text data is supported.
@changelog_1003_h2
Version 1.0.67 (2008-02-22)
@changelog_1004_li
CREATE TABLE AS SELECT now supports specifying the column list and data types.
New function FILE_READ to read a file or from an URL. Both binary and text data is supported.
@changelog_1005_li
Connecting to a TCP server and at shutting it down at the same time could cause a Java level deadlock.
CREATE TABLE AS SELECT now supports specifying the column list and data types.
@changelog_1006_li
A user now has all rights on his own local temporary tables.
Connecting to a TCP server and at shutting it down at the same time could cause a Java level deadlock.
@changelog_1007_li
CSV tool now support lineSeparator.
A user now has all rights on his own local temporary tables.
@changelog_1008_li
When using multiple connections, empty space was reused too early sometimes. This was sometimes causing database corruption.
The CSV tool now supports a custom lineSeparator.
@changelog_1009_li
The H2 Console has been translated to Dutch. Thanks a lot to Remco Schoen!
When using multiple connections, empty space was reused too early sometimes. This was sometimes causing database corruption.
@changelog_1010_li
Databases can now be opened even if trigger classes are not in the classpath. The exception is thrown when trying to fire the trigger.
The H2 Console has been translated to Dutch. Thanks a lot to Remco Schoen!
@changelog_1011_li
Opening databases with ACCESS_MODE_DATA=r is now supported. In this case the database is read-only, but the files don't not need to be read-only.
Databases can now be opened even if trigger classes are not in the classpath. The exception is thrown when trying to fire the trigger.
@changelog_1012_li
Security: The database now waits 200 ms before throwing an exception if the user name or password don't match, to slow down dictionary attacks.
Opening databases with ACCESS_MODE_DATA=r is now supported. In this case the database is read-only, but the files don't not need to be read-only.
@changelog_1013_li
The value cache is now a soft reference cache. This should help save memory.
Security: The database now waits 200 ms before throwing an exception if the user name or password don't match, to slow down dictionary attacks.
@changelog_1014_li
CREATE INDEX on a table with many rows could run out of memory. Fixed.
The value cache is now a soft reference cache. This should help save memory.
@changelog_1015_li
Large result sets are now a bit faster.
CREATE INDEX on a table with many rows could run out of memory. Fixed.
@changelog_1016_li
ALTER TABLE ALTER COLUMN RESTART and ALTER SEQUENCE now support parameters (any expressions).
Large result sets are now a bit faster.
@changelog_1017_li
When setting the base directory on the command line, the user directory prefix ('~') was ignored.
ALTER TABLE ALTER COLUMN RESTART and ALTER SEQUENCE now support parameters (any expressions).
@changelog_1018_li
The DbStarter servlet didn't start the TCP listener even if configured.
When setting the base directory on the command line, the user directory prefix ('~') was ignored.
@changelog_1019_li
Recovery could fail when using multiple connections and larger transactions that deleted many rows.
The DbStarter servlet didn't start the TCP listener even if configured.
@changelog_1020_li
Statement.setQueryTimeout() is now supported.
......@@ -3809,7 +3809,7 @@ Version 1.0.67 (2008-02-22):
Windows Installer (2.9 MB)
@mainWeb_1009_a
All platforms (zip, 4.0 MB)
All platforms (zip, 4.1 MB)
@mainWeb_1010_a
All Downloads
......
......@@ -317,24 +317,24 @@ build_1033_li=Web site\: src/docsrc/text/_docs_*.utf8.txt
build_1034_p=The conversion between UTF-8 and Java encoding (using the \\u syntax), as well as the HTML entities (&\#..;) is automated by running the tool PropertiesToUTF8. The web site translation is automated as well, using <code>ant docs</code> .
changelog_1000_h1=Change Log
changelog_1001_h2=Next Version (unreleased)
changelog_1002_h2=Version 1.0.67 (2008-02-22)
changelog_1003_li=New function FILE_READ to read a file or from an URL. Both binary and text data is supported.
changelog_1004_li=CREATE TABLE AS SELECT now supports specifying the column list and data types.
changelog_1005_li=Connecting to a TCP server and at shutting it down at the same time could cause a Java level deadlock.
changelog_1006_li=A user now has all rights on his own local temporary tables.
changelog_1007_li=CSV tool now support lineSeparator.
changelog_1008_li=When using multiple connections, empty space was reused too early sometimes. This was sometimes causing database corruption.
changelog_1009_li=The H2 Console has been translated to Dutch. Thanks a lot to Remco Schoen\!
changelog_1010_li=Databases can now be opened even if trigger classes are not in the classpath. The exception is thrown when trying to fire the trigger.
changelog_1011_li=Opening databases with ACCESS_MODE_DATA\=r is now supported. In this case the database is read-only, but the files don't not need to be read-only.
changelog_1012_li=Security\: The database now waits 200 ms before throwing an exception if the user name or password don't match, to slow down dictionary attacks.
changelog_1013_li=The value cache is now a soft reference cache. This should help save memory.
changelog_1014_li=CREATE INDEX on a table with many rows could run out of memory. Fixed.
changelog_1015_li=Large result sets are now a bit faster.
changelog_1016_li=ALTER TABLE ALTER COLUMN RESTART and ALTER SEQUENCE now support parameters (any expressions).
changelog_1017_li=When setting the base directory on the command line, the user directory prefix ('~') was ignored.
changelog_1018_li=The DbStarter servlet didn't start the TCP listener even if configured.
changelog_1019_li=Recovery could fail when using multiple connections and larger transactions that deleted many rows.
changelog_1002_li=-
changelog_1003_h2=Version 1.0.67 (2008-02-22)
changelog_1004_li=New function FILE_READ to read a file or from an URL. Both binary and text data is supported.
changelog_1005_li=CREATE TABLE AS SELECT now supports specifying the column list and data types.
changelog_1006_li=Connecting to a TCP server and at shutting it down at the same time could cause a Java level deadlock.
changelog_1007_li=A user now has all rights on his own local temporary tables.
changelog_1008_li=The CSV tool now supports a custom lineSeparator.
changelog_1009_li=When using multiple connections, empty space was reused too early sometimes. This was sometimes causing database corruption.
changelog_1010_li=The H2 Console has been translated to Dutch. Thanks a lot to Remco Schoen\!
changelog_1011_li=Databases can now be opened even if trigger classes are not in the classpath. The exception is thrown when trying to fire the trigger.
changelog_1012_li=Opening databases with ACCESS_MODE_DATA\=r is now supported. In this case the database is read-only, but the files don't not need to be read-only.
changelog_1013_li=Security\: The database now waits 200 ms before throwing an exception if the user name or password don't match, to slow down dictionary attacks.
changelog_1014_li=The value cache is now a soft reference cache. This should help save memory.
changelog_1015_li=CREATE INDEX on a table with many rows could run out of memory. Fixed.
changelog_1016_li=Large result sets are now a bit faster.
changelog_1017_li=ALTER TABLE ALTER COLUMN RESTART and ALTER SEQUENCE now support parameters (any expressions).
changelog_1018_li=When setting the base directory on the command line, the user directory prefix ('~') was ignored.
changelog_1019_li=The DbStarter servlet didn't start the TCP listener even if configured.
changelog_1020_li=Statement.setQueryTimeout() is now supported.
changelog_1021_li=New session setting QUERY_TIMEOUT, and new system property h2.maxQueryTimeout.
changelog_1022_li=Changing the transaction log level (SET LOG) is now written to the trace file by default.
......@@ -1268,7 +1268,7 @@ mainWeb_1005_li=JDBC and (partial) ODBC API; Web Client application
mainWeb_1006_h3=Download
mainWeb_1007_td=Version 1.0.67 (2008-02-22)\:
mainWeb_1008_a=Windows Installer (2.9 MB)
mainWeb_1009_a=All platforms (zip, 4.0 MB)
mainWeb_1009_a=All platforms (zip, 4.1 MB)
mainWeb_1010_a=All Downloads
mainWeb_1011_td=&nbsp;&nbsp;&nbsp;
mainWeb_1012_h3=Support
......
......@@ -41,6 +41,7 @@ package org.h2.engine;
*
* - Documentation: if there are new files, add them to MergeDocs
* - Documentation: check if all Javadoc files are in the index
* - Update newsfeed and create files
* - ant docs
* - PDF
* - footer
......
......@@ -10,6 +10,45 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE TABLE ITEM(ID INT PRIMARY KEY, TITLE VARCHAR, ISSUED TIMESTAMP, DESC VARCHAR);
INSERT INTO ITEM VALUES(37,
'New version available: 1.0.67 (2008-02-22)', '2008-02-22 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>New function FILE_READ to read a file or from an URL.
</li><li>CREATE TABLE AS SELECT now supports a column list.
</li><li>The CSV tool now supports a custom lineSeparator.
</li><li>A user now has all rights on his own local temporary tables.
</li><li>Opening databases with ACCESS_MODE_DATA=r is now supported.
</li><li>Protection against password dictionary attacks in server mode.
</li><li>The value cache is improved to save memory.
</li><li>Large result sets are now a bit faster.
</li><li>ALTER SEQUENCE now support parameters.
</li><li>Statement.setQueryTimeout() is now supported.
</li><li>New session setting QUERY_TIMEOUT.
</li><li>The H2 Console has been translated to Dutch. Thanks a lot to Remco Schoen!
</li><li>The H2 Console is now faster for databases containing many tables.
</li><li>Databases can now be opened even if trigger classes are not in the classpath.
</li><li>Changing the transaction log level (SET LOG) is now written to the trace file.
</li><li>Primary key are now ordered before foreign key constraints.
</li></ul>
<b>Bugfixes:</b>
<ul><li>When using multiple connections, empty space was reused too early sometimes.
This could corrupt the database when recovering.
</li><li>The DbStarter servlet didn''t start the TCP listener even if configured.
</li><li>The user directory prefix (''~'') was ignored sometimes.
</li><li>Connecting to a TCP server and at shutting it down at the same time could fail.
</li><li>CREATE INDEX on a table with many rows used too much memory.
</li><li>A referential constraint to a table in a different schema could not be created.
</li></ul>
For details, see the ''Change Log'' at
http://groups.google.com/group/h2-database/web/change-log
<br />
For future plans, see the ''Roadmap'' page at
http://groups.google.com/group/h2-database/web/roadmap
');
INSERT INTO ITEM VALUES(36,
'New version available: 1.0.66 (2008-02-02)', '2008-02-02 12:00:00',
'A new version of H2 is available for <a href="http://www.h2database.com">download</a>.
......@@ -298,47 +337,6 @@ INSERT INTO ITEM VALUES(28,
For future plans, see the new ''Roadmap'' page on the web site.
');
INSERT INTO ITEM VALUES(27,
'New version available: 1.0.57 (2007-08-25)', '2007-08-25 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>
The default lock mode is now read committed instead of serialized.
</li><li>The build now issues a warning if the source code is switched to the wrong version.
</li><li>The H2 Console can now connect to databases using JNDI.
</li><li>New experimental feature MVCC (multi version concurrency control).
</li><li>The version number is now major.minor.micro where micro is the build number.
</li><li>New Japanese translation of the error messages thanks to Ikemoto Masahiro.
</li><li>Disabling / enabling referential integrity for a table can now be used inside a transaction.
</li><li>Check and foreign key constraints now checks if the existing data is consistent.
</li><li>Can now incrementally translate the documentation.
</li><li>Improved error messages.
</li></ul>
<b>Bugfixes:</b>
<ul><li>
Some unit tests failed on Linux because the file system works differently.
</li><li>Rights checking for dynamic tables (SELECT * FROM (SELECT ...)) did not work.
</li><li>More than 10 views that depend on each other was very slow.
</li><li>When used as as Servlet, the H2 Console did not work with SSL (using Tomcat).
</li><li>Problem when altering a table with foreign key constraint, if there was no manual index.
</li><li>The backup tool (org.h2.tools.Backup) did not work.
</li><li>Opening large read-only databases was very slow. Fixed.
</li><li>OpenOffice compatibility: support database name in column names.
</li><li>The column name C_CURRENT_TIMESTAMP did not work in the last release.
</li><li>Two-phase commit: commit with transaction name was only supported in the recovery scan.
</li><li>PG server: data was truncated when reading large VARCHAR columns and decimal columns.
</li><li>PG server: error when the same database was accessed multiple times using the PostgreSQL ODBC driver.
</li><li>Some file operations didn''t work for files in the root directory.
</li><li>In the Restore tool, the parameter -file did not work.
</li><li>The CONVERT function did not work with views when using UNION.
</li><li>Google translate did not work for the H2 homepage.
</li></ul>
For future plans, see the new ''Roadmap'' page on the web site.
');
SELECT 'newsfeed-rss.xml' FILE,
XMLSTARTDOC() ||
XMLNODE('rss', XMLATTR('version', '2.0'),
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论