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

--no commit message

--no commit message
上级 c7e9dcc9
......@@ -371,7 +371,7 @@ Roadmap
</li><li>Support large databases: split LOB (BLOB, CLOB) to multiple directories / disks (similar to tablespaces).
</li><li>Support to assign a primary key index a user defined name.
</li><li>Cluster: Add feature to make sure cluster nodes can not get out of sync (for example by stopping one process).
</li><lil>H2 Console: support configuration option for fixed width (monospace) font.
</li><li>H2 Console: support configuration option for fixed width (monospace) font.
</li></ul>
<h2>Not Planned</h2>
......
......@@ -14,16 +14,15 @@ package org.h2.engine;
* - build jar, test with IKVM
* - build javadocImpl
* - Compile with JDK 1.6:
* set path=C:\Programme\Java\jdk1.6.0\bin;%PATH%
* set JAVA_HOME=C:\Programme\Java\jdk1.6.0
* set path=C:\Program Files\Java\jdk1.6.0_05\bin;%PATH%
* set JAVA_HOME=C:\Program Files\Java\jdk1.6.0_05
* java16
* build compile
* set classpath=
* build javadoc
* build javadocImpl (to find missing javadocs)
* - reset to JDK 1.4
* build compile
* java16
* compile
* - Change version and build number in
* Constants.java
* - Maybe increase TCP_DRIVER_VERSION (old clients must be compatible!)
......@@ -47,6 +46,7 @@ package org.h2.engine;
* - orphan control
* - check images
* - table of contents
* - Use java 1.4
* - build all
* - Copy the pdf file to h2/docs
* - build zip
......@@ -56,6 +56,9 @@ package org.h2.engine;
* - Scan for viruses
* - build mavenDeployCentral
* - Upload to SourceForge
* - java16
* - build compile
* - refresh
* - svn commit
* - svn copy: /svn/trunk /svn/tags/version-1.0.x; Version 1.0.x (yyyy-mm-dd)
* - Newsletter: prepare (always to BCC!!)
......
......@@ -545,4 +545,5 @@ crab northwoods escargots organic sasquatch bourgogne clam camembert tigers
chang lumberjack roed biscuits
usable weblica jena preserved instrumentation inspect jayaprakash ashwin
varargs automate couldn unclear eat dtp disks tablespaces great reproduces
\ No newline at end of file
varargs automate couldn unclear eat dtp disks tablespaces great reproduces
hhh overridden sqle propogation buildid tsv monospace
\ No newline at end of file
......@@ -26,7 +26,7 @@ public class H2Dialect extends Dialect {
querySequenceString = "select sequence_name from information_schema.sequences";
try {
// HHH-2300
// HHH-2300
Class constants = ReflectHelper.classForName( "org.h2.engine.Constants" );
Integer build = (Integer)constants.getDeclaredField("BUILD_ID" ).get(null);
int buildid = build.intValue();
......@@ -213,9 +213,9 @@ public class H2Dialect extends Dialect {
return true;
}
public boolean supportsPooledSequences() {
return true;
}
public boolean supportsPooledSequences() {
return true;
}
public String getCreateSequenceString(String sequenceName) {
return "create sequence " + sequenceName;
......@@ -237,7 +237,7 @@ public class H2Dialect extends Dialect {
return querySequenceString;
}
public ViolatedConstraintNameExtracter getViolatedConstraintNameExtracter() {
public ViolatedConstraintNameExtracter getViolatedConstraintNameExtracter() {
return EXTRACTER;
}
......@@ -290,9 +290,9 @@ public class H2Dialect extends Dialect {
}
// Overridden informational metadata ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Overridden informational metadata ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
public boolean supportsLobValueChangePropogation() {
return false;
}
public boolean supportsLobValueChangePropogation() {
return false;
}
}
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论