提交 4dac660d authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 fffced08
...@@ -78,12 +78,12 @@ Initial Developer: H2 Group ...@@ -78,12 +78,12 @@ Initial Developer: H2 Group
<!-- translate <!-- translate
<div id = "google_translate_element"></div> <div id = "google_translate_element"></div>
<script> <script type="text/javascript">
function googleTranslateElementInit() { function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en'}, 'google_translate_element'); new google.translate.TranslateElement({pageLanguage: 'en'}, 'google_translate_element');
} }
</script> </script>
<script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script> <script type="text/javascript" src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
translate --> translate -->
</div> </div>
......
...@@ -69,7 +69,7 @@ Welcome to H2, the Java SQL database. The main features of H2 are: ...@@ -69,7 +69,7 @@ Welcome to H2, the Java SQL database. The main features of H2 are:
var f = '.com'; var f = '.com';
var g = 'h2database'; var g = 'h2database';
var alt = 'mail address: ' + d + c + e + g + f + '(without spaces)'; var alt = 'mail address: ' + d + c + e + g + f + '(without spaces)';
document.write('<' + 'a h'+'ref="em' + 'ail:' + d + c + e + g + f +'">' + d + c + e + g + f + '</a>'); document.write('<' + 'a h'+'ref="em' + 'ail:' + d + c + e + g + f +'">' + d + c + e + g + f + '<' + '/a>');
//--> //-->
</script> </script>
</p> </p>
......
...@@ -22,6 +22,8 @@ Initial Developer: H2 Group ...@@ -22,6 +22,8 @@ Initial Developer: H2 Group
} else if (key == 'build') { } else if (key == 'build') {
if (value == 64) { if (value == 64) {
tag = 'tags/version-1.0.' + value; tag = 'tags/version-1.0.' + value;
} else if (value >= 120) {
tag = 'tags/version-1.2.' + value + '/h2';
} else if (value >= 100) { } else if (value >= 100) {
tag = 'tags/version-1.1.' + value + '/h2'; tag = 'tags/version-1.1.' + value + '/h2';
} else if (value >= 63) { } else if (value >= 63) {
......
...@@ -64,6 +64,8 @@ function go(file, line) { ...@@ -64,6 +64,8 @@ function go(file, line) {
var tag = 'trunk/h2'; var tag = 'trunk/h2';
if (build == 64) { if (build == 64) {
tag = 'tags/version-1.0.' + build; tag = 'tags/version-1.0.' + build;
} else if (build >= 120) {
tag = 'tags/version-1.2.' + build + '/h2';
} else if (build >= 100) { } else if (build >= 100) {
tag = 'tags/version-1.1.' + build + '/h2'; tag = 'tags/version-1.1.' + build + '/h2';
} else if (build >= 63) { } else if (build >= 63) {
...@@ -97,7 +99,7 @@ function convert() { ...@@ -97,7 +99,7 @@ function convert() {
hasData = true; hasData = true;
idx = errorCode.indexOf("-"); idx = errorCode.indexOf("-");
build = parseInt(errorCode.substring(idx + 1)); build = parseInt(errorCode.substring(idx + 1));
get('version').innerHTML = (build < 100 ? '1.0.' : '1.1.') + build; get('version').innerHTML = (build < 100 ? '1.0.' : (build < 120 ? '1.1.' : '1.2.')) + build;
errorCode = errorCode.substring(0, idx); errorCode = errorCode.substring(0, idx);
while (errorCode.length > 1 && errorCode.charAt(0) == '0') { while (errorCode.length > 1 && errorCode.charAt(0) == '0') {
errorCode = errorCode.substring(1); errorCode = errorCode.substring(1);
...@@ -137,7 +139,7 @@ function convert() { ...@@ -137,7 +139,7 @@ function convert() {
result += lineNumber; result += lineNumber;
result += ")'>"; result += ")'>";
result += element; result += element;
result += "</a>"; result += "<" + "/a>";
hasData = true; hasData = true;
idx = end + 1; idx = end + 1;
} }
......
...@@ -25,8 +25,10 @@ function allDetails() { ...@@ -25,8 +25,10 @@ function allDetails() {
} }
function switchTag(id, title, detail) { function switchTag(id, title, detail) {
if (document.getElementById('__' + id) != null) {
document.getElementById('__' + id).className = title; document.getElementById('__' + id).className = title;
document.getElementById('_' + id).className = detail; document.getElementById('_' + id).className = detail;
}
return false; return false;
} }
......
...@@ -6104,7 +6104,7 @@ H2 データベース エンジン ...@@ -6104,7 +6104,7 @@ H2 データベース エンジン
#Small footprint: around 1 MB jar file size #Small footprint: around 1 MB jar file size
@mainWeb_1006_h3 @mainWeb_1006_h3
#Download Beta #ダウンロード #Download Beta
@mainWeb_1007_td @mainWeb_1007_td
#Version 1.2.120 (2009-10-04): #Version 1.2.120 (2009-10-04):
......
Change version and build number in Constants.java Change version and build number in Constants.java
If the minor version changes, change sourceError.html and source.html
Maybe increase TCP_DRIVER_VERSION (old clients must be compatible!) Maybe increase TCP_DRIVER_VERSION (old clients must be compatible!)
Update the changelog (add new version) Update the changelog (add new version)
Update the newsfeed Update the newsfeed
......
...@@ -83,3 +83,27 @@ I am sorry to say that, but it looks like a corruption problem. I am very intere ...@@ -83,3 +83,27 @@ I am sorry to say that, but it looks like a corruption problem. I am very intere
Could you send them please? Could you send them please?
- Do you still have any .trace.db files, and if yes could you send them? - Do you still have any .trace.db files, and if yes could you send them?
- Could you send the .data.db file where this exception occurs? - Could you send the .data.db file where this exception occurs?
Hi,
I have a few questions:
- The database URL?
- With which version of H2 was this database created?
You can find it out using:
select * from information_schema.settings where name='CREATE_BUILD'
- Did you use multiple connections?
- Do you use any settings or special features (for example, the setting
LOG=0, or two phase commit, linked tables, cache settings)?
- Is the application multi-threaded?
- What operating system, file system, and virtual machine
(java -version) do you use?
- How big is the database (file sizes)?
- Is the database usually closed normally, or is process terminated
forcefully or the computer switched off?
- Are there any other exceptions (maybe in the .trace.db file)?
Could you send them please?
- Do you still have any .trace.db files, and if yes could you send them?
- Could you send the .h2.db file where this exception occurs?
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论