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

--no commit message

--no commit message
上级 222f45c2
......@@ -18,13 +18,15 @@ Change Log
<h1>Change Log</h1>
<h2>Next Version (unreleased)</h2>
<ul><li>Each session threw an invisible exception when garbage collected.
<ul><li>MySQL compatibility: support for := assignment as in @sum:=@sum+x
</li><li>INSERT INTO TEST(SELECT * FROM TEST) is now supported.
</li><li>Each session threw an invisible exception when garbage collected.
</li><li>Foreign key constraints referring to a quoted column did not work.
</li><li>New meta data column INFORMATION_SCHEMA.TABLES.LAST_MODIFICATION to get
the table modification counter.
</li><li>Shell: line comments didn't work correctly.
</li><li>H2 Console: Columns are now listed for up to 500 tables instead of 100.
</li><li>H2 Console: Cmd+Enter executes the current statement.
</li><li>H2 Console: Cmd+Enter executes the current statement, Alt+Space for autocomplete.
</li><li>JaQu: the maximum length of a column can now be defined using maxLength.
For an example, see Product.java (maxLength(category, 255)).
</li><li>R&\#305;dvan A&\#287;ar has completed the Turkish translation of the H2 Console. Thanks a lot!
......
......@@ -469,6 +469,11 @@ SmartFoxServer</a><br />
Platform for developing multiuser applications and games with Macromedia Flash.
</p>
<p><a href="http://sqlorm.sourceforge.net/index.html>
SQLOrm</a><br />
Java Object Relation Mapping.
</p>
<p><a href="http://www.intertec.ch/storybook">
StorYBook</a><br />
A summary-based tool for novelist and script writers. It helps to keep the overview over the various traces a story has.
......
@echo off
echo %time:~0,8% Start
rem == Change version and build number in Constants.java
rem == Maybe increase TCP_DRIVER_VERSION (old clients must be compatible!)
rem == Update the changelog (add new version)
rem == Update the newsfeed
rem == No " Message.get" (must be "throw Message.get")
rem == Documentation: check if all Javadoc files are in the index
rem == Check that is no TODO in the docs
rem == Check code coverage
rem == Run regression test with JDK 1.4 and 1.5
rem == Use latest versions of other dbs
rem == Change version(s) in performance.html
setlocal
cd ../..
set today=%date:~6%%date:~3,2%%date:~0,2%
......@@ -42,32 +30,3 @@ call build -quiet switchSource
ren ..\h2web h2web-%today%
echo %time:~0,8% Done
rem == Test with Hibernate
rem == Run FindBugs
rem == buildRelease.bat
rem == Check docs, versions and links in main, downloads, build numbers
rem == Check if missing javadocs
rem == Test installer
rem == Check in the PDF file:
rem == - footer
rem == - front page
rem == - orphan control
rem == - check images
rem == - table of contents
rem == Test Console
rem == Test all languages
rem == Scan for viruses
rem == Upload to SourceForge
rem == svn commit
rem == svn copy: /svn/trunk /svn/tags/version-1.1.x; Version 1.1.x (yyyy-mm-dd)
rem == Newsletter: prepare (always to BCC!!)
rem == Upload to h2database.com, http://code.google.com/p/h2database/downloads/list
rem == Newsletter: send (always to BCC!!)
rem == Remove Contacts in GMail
rem == Add to freshmeat
rem == Change version: http://en.wikipedia.org/wiki/H2_%28DBMS%29
rem == Change version: http://ja.wikipedia.org/wiki/H2_Database
rem == Change version: http://es.wikipedia.org/wiki/H2
rem == Change version: http://www.heise.de/software/
rem == Close bugs: http://code.google.com/p/h2database/issues/list
#!/bin/sh
cd ../..
today=$(date "+%Y-%m-%d")
rmdir -r ../h2web-$today
rmdir -r ../h2web
mkdir ../h2web
rmdir -r bin
rmdir /s /q temp
call java14
./build.sh -quiet
call java16
call build -quiet compile
call build -quiet spellcheck javadocImpl jarClient
echo $(date "+%H:%M:%S") JDK 1.4
call java14
./build.sh -quiet clean compile
./build.sh -quiet installer mavenDeployCentral
rem ./build.sh -quiet compile benchmark
rem == Copy the benchmark results and update the performance page and diagram
call java16
./build.sh -quiet switchSource
mv ../h2web h2web-%today%
echo $(date "+%H:%M:%S") Done
......@@ -6,6 +6,7 @@ End Sub
sub H2Pdf
BaseDir = "file:///C:/data/h2database/"
REM BaseDir = "file:///Users/tmueller/data/"
Url = BaseDir & "h2/docs/html/onePage.html"
dim FileProperties(1) As New com.sun.star.beans.PropertyValue
......
Change version and build number in Constants.java
Maybe increase TCP_DRIVER_VERSION (old clients must be compatible!)
Update the changelog (add new version)
Update the newsfeed
No " Message.get" (must be "throw Message.get")
Documentation: check if all Javadoc files are in the index
Check that is no TODO in the docs
Check code coverage
Run regression test with JDK 1.4 and 1.5
Use latest versions of other dbs
Change version(s) in performance.html
Run ./buildRelease.sh
Test with Hibernate
Run FindBugs
buildRelease.bat
Check docs, versions and links in main, downloads, build numbers
Check if missing javadocs
Test installer
Check in the PDF file:
- footer
- front page
- orphan control
- check images
- table of contents
Test Console
Test all languages
Scan for viruses
Upload to SourceForge
svn commit
svn copy: /svn/trunk /svn/tags/version-1.1.x; Version 1.1.x (yyyy-mm-dd)
Newsletter: prepare (always to BCC!!)
Upload to h2database.com, http://code.google.com/p/h2database/downloads/list
Newsletter: send (always to BCC!!)
Remove Contacts in GMail
Add to freshmeat
Change version: http://en.wikipedia.org/wiki/H2_%28DBMS%29
Change version: http://ja.wikipedia.org/wiki/H2_Database
Change version: http://es.wikipedia.org/wiki/H2
Change version: http://www.heise.de/software/
Close bugs: http://code.google.com/p/h2database/issues/list
......@@ -6,7 +6,6 @@
*/
package org.h2.test.db;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
......@@ -20,7 +19,6 @@ import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import org.h2.engine.Constants;
import org.h2.test.TestAll;
import org.h2.test.TestBase;
......@@ -98,7 +96,7 @@ public class TestScript extends TestBase {
if (errors.length() > 0) {
throw new Exception("errors:\n" + errors.toString());
}
new File(outFile).delete();
// new File(outFile).delete();
}
private String readLine() throws IOException {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论