Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
0693393f
提交
0693393f
authored
10月 21, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
1a10f1ea
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
28 行增加
和
18 行删除
+28
-18
changelog.html
h2/src/docsrc/html/changelog.html
+5
-2
links.html
h2/src/docsrc/html/links.html
+5
-0
Recover.java
h2/src/main/org/h2/tools/Recover.java
+1
-1
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+17
-15
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
0693393f
...
...
@@ -18,7 +18,9 @@ Change Log
<h1>
Change Log
</h1>
<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.
</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
...
...
@@ -26,7 +28,8 @@ Change Log
</li></ul>
<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
when the database is already open in another process (less than 0.01 seconds
instead of 2 seconds).
...
...
h2/src/docsrc/html/links.html
浏览文件 @
0693393f
...
...
@@ -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).
</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"
>
Flux
</a><br
/>
Java job scheduler, file transfer, workflow, and BPM.
...
...
h2/src/main/org/h2/tools/Recover.java
浏览文件 @
0693393f
...
...
@@ -698,7 +698,7 @@ public class Recover extends Tool implements DataHandler {
for
(
int
i
=
0
;
i
<
256
;
i
+=
16
)
{
textStorage
=
(
i
%
2
)
==
0
;
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
);
}
}
...
...
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
0693393f
...
...
@@ -202,6 +202,16 @@ java org.h2.test.TestAll timer
*/
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
* should be switched early).
...
...
@@ -238,20 +248,10 @@ java org.h2.test.TestAll timer
*/
boolean
endless
;
/**
* The file trace level value to use.
*/
int
traceLevelFile
;
/**
* The THROTTLE value to use.
*/
int
throttle
;
/**
* If test trace information should be written (for debugging only).
*/
boolean
traceTest
;
/**
* If the test should stop when the first error occurs.
...
...
@@ -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
http://validator.w3.org/
test web site (including search, main, web main)
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:
Database.logIndexChanges stays; should be updated? need test case
...
...
@@ -294,10 +300,6 @@ DROP ALL OBJECTS in a loop: memory problem with storageMap
test with 1.0
fix html (use xhtml?)
http://validator.w3.org/
document url parameter open_new
osgi: create a sample application, test, document
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论