提交 0693393f authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 1a10f1ea
...@@ -18,7 +18,9 @@ Change Log ...@@ -18,7 +18,9 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>Self referencing constraints didn't restrict deleting rows that reference <ul><li>Common exception (error code 23*) are no longer written to the .trace.db file by default.
</li><li>In-memory databases don't write LOBs to files any longer.
</li><li>Self referencing constraints didn't restrict deleting rows that reference
itself if there is another row that references it. itself if there is another row that references it.
</li><li>ResultSetMetaData.getColumnName now returns the alias name except for columns. </li><li>ResultSetMetaData.getColumnName now returns the alias name except for columns.
</li><li>Temporary files are now deleted when the database is closed, even </li><li>Temporary files are now deleted when the database is closed, even
...@@ -26,7 +28,8 @@ Change Log ...@@ -26,7 +28,8 @@ Change Log
</li></ul> </li></ul>
<h2>Version 1.1.101 (2008-10-17)</h2> <h2>Version 1.1.101 (2008-10-17)</h2>
<ul><li>Queries with more than 10 tables are now faster. <ul><li>Errors with code 42000 - 42999 are no longer written to the trace file by default.
</li><li>Queries with more than 10 tables are now faster.
</li><li>Opening a connection with AUTO_SERVER=TRUE is now fast </li><li>Opening a connection with AUTO_SERVER=TRUE is now fast
when the database is already open in another process (less than 0.01 seconds when the database is already open in another process (less than 0.01 seconds
instead of 2 seconds). instead of 2 seconds).
......
...@@ -179,6 +179,11 @@ Fabric3</a><br /> ...@@ -179,6 +179,11 @@ Fabric3</a><br />
Fabric3 is a project implementing a federated service network based on the Service Component Architecture specification (http://www.osoa.org). Fabric3 is a project implementing a federated service network based on the Service Component Architecture specification (http://www.osoa.org).
</p> </p>
<p><a href="http://code.google.com/p/fit4data/">
FIT4Data</a><br />
A testing framework for data management applications built on the Java implementation of FIT.
</p>
<p><a href="http://www.fluxcorp.com"> <p><a href="http://www.fluxcorp.com">
Flux</a><br /> Flux</a><br />
Java job scheduler, file transfer, workflow, and BPM. Java job scheduler, file transfer, workflow, and BPM.
......
...@@ -698,7 +698,7 @@ public class Recover extends Tool implements DataHandler { ...@@ -698,7 +698,7 @@ public class Recover extends Tool implements DataHandler {
for (int i = 0; i < 256; i += 16) { for (int i = 0; i < 256; i += 16) {
textStorage = (i % 2) == 0; textStorage = (i % 2) == 0;
int offset = i / 2; int offset = i / 2;
String out = fileName + (textStorage ? ".txt." : ".") + offset + ".data.db"; String out = fileName + (textStorage ? ".txt." : ".") + offset + Constants.SUFFIX_DATA_FILE;
dumpData(fileName, textStorage, out, offset); dumpData(fileName, textStorage, out, offset);
} }
} }
......
...@@ -202,6 +202,16 @@ java org.h2.test.TestAll timer ...@@ -202,6 +202,16 @@ java org.h2.test.TestAll timer
*/ */
public boolean jdk14 = true; public boolean jdk14 = true;
/**
* The file trace level value to use.
*/
public int traceLevelFile;
/**
* If test trace information should be written (for debugging only).
*/
public boolean traceTest;
/** /**
* If the transaction log files should be kept small (that is, log files * If the transaction log files should be kept small (that is, log files
* should be switched early). * should be switched early).
...@@ -238,20 +248,10 @@ java org.h2.test.TestAll timer ...@@ -238,20 +248,10 @@ java org.h2.test.TestAll timer
*/ */
boolean endless; boolean endless;
/**
* The file trace level value to use.
*/
int traceLevelFile;
/** /**
* The THROTTLE value to use. * The THROTTLE value to use.
*/ */
int throttle; int throttle;
/**
* If test trace information should be written (for debugging only).
*/
boolean traceTest;
/** /**
* If the test should stop when the first error occurs. * If the test should stop when the first error occurs.
...@@ -280,12 +280,18 @@ java org.h2.test.TestAll timer ...@@ -280,12 +280,18 @@ java org.h2.test.TestAll timer
/* /*
memory problems with in-memory databases (open, close... loop)
simplify translation
use only one icon, not both use only one icon, not both
http://validator.w3.org/
test web site (including search, main, web main) test web site (including search, main, web main)
test with firefox 3, internet explorer, opera, safari, google chrome test with firefox 3, internet explorer, opera, safari, google chrome
don't write stack trace of common exceptions in log file: 23* don't write stack trace of common exceptions in log in level ERROR (use info?) file: 23*
remote and embedded
SET LOG 2: SET LOG 2:
Database.logIndexChanges stays; should be updated? need test case Database.logIndexChanges stays; should be updated? need test case
...@@ -294,10 +300,6 @@ DROP ALL OBJECTS in a loop: memory problem with storageMap ...@@ -294,10 +300,6 @@ DROP ALL OBJECTS in a loop: memory problem with storageMap
test with 1.0 test with 1.0
fix html (use xhtml?)
http://validator.w3.org/
document url parameter open_new document url parameter open_new
osgi: create a sample application, test, document osgi: create a sample application, test, document
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论