Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
be7d675f
提交
be7d675f
authored
17 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
2a910f70
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
13 行增加
和
7 行删除
+13
-7
changelog.html
h2/src/docsrc/html/changelog.html
+5
-0
Constants.java
h2/src/main/org/h2/engine/Constants.java
+1
-1
BuildBase.java
h2/src/tools/org/h2/build/BuildBase.java
+7
-6
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
be7d675f
...
...
@@ -17,6 +17,11 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<ul>
<li>
-
</li></ul>
<h2>
Version 1.0.72 (2008-05-10)
</h2>
<ul>
<li>
Some databases could not be opened when appending
;RECOVER=1 to the database URL.
</li><li>
The Japanese translation of the error messages and the H2 Console
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
be7d675f
...
...
@@ -37,7 +37,7 @@ package org.h2.engine;
* - Use latest versions of other dbs (Derby 10.4.1.3;
* PostgreSQL 8.3.1; MySQL 5.0.51)
* - Change version(s) in performance.html
* - Run '
ant
benchmark' (with JDK 1.4 currently)
* - Run '
build
benchmark' (with JDK 1.4 currently)
* - Copy the benchmark results and update the performance page and diagram
*
* - Documentation: if there are new files, add them to MergeDocs
...
...
This diff is collapsed.
Click to expand it.
h2/src/tools/org/h2/build/BuildBase.java
浏览文件 @
be7d675f
...
...
@@ -148,16 +148,17 @@ public class BuildBase {
/**
* Execute a script in a separate process.
*
* @param commandAndArgs the script name (for example mvn or ant) and the arguments
* In Windows, the batch file with this name (.bat) is run.
*
* @param script the program to run
* @param args the command line parameters
* @return the exit value
*/
protected
int
execScript
(
String
command
,
String
[]
args
)
{
protected
int
execScript
(
String
script
,
String
[]
args
)
{
if
(
isWindows
())
{
command
=
command
+
".bat"
;
script
=
script
+
".bat"
;
}
return
exec
(
command
,
args
);
return
exec
(
script
,
args
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论