Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
a97687c0
提交
a97687c0
authored
10月 03, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
CreateCluster: the property 'serverlist' is now called 'serverList'.
上级
6f23470c
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
14 行增加
和
14 行删除
+14
-14
CreateCluster.java
h2/src/main/org/h2/tools/CreateCluster.java
+14
-14
没有找到文件。
h2/src/main/org/h2/tools/CreateCluster.java
浏览文件 @
a97687c0
...
...
@@ -28,7 +28,7 @@ public class CreateCluster extends Tool {
" -urlTarget <url> The database URL of the target database (jdbc:h2:...)\n"
+
" -user <user> The user name\n"
+
" [-password <pwd>] The password\n"
+
" -server
l
ist <list> The comma separated list of host names or IP addresses"
);
" -server
L
ist <list> The comma separated list of host names or IP addresses"
);
out
.
println
(
"See also http://h2database.com/javadoc/"
+
getClass
().
getName
().
replace
(
'.'
,
'/'
)
+
".html"
);
}
...
...
@@ -43,7 +43,7 @@ public class CreateCluster extends Tool {
* <li>-urlTarget jdbc:h2:... (the database URL of the target database)
* </li><li>-user (the user name)
* </li><li>-password (the password)
* </li><li>-server
l
ist (the server list)
* </li><li>-server
L
ist (the server list)
* </li></ul>
*
* @param args the command line arguments
...
...
@@ -58,7 +58,7 @@ public class CreateCluster extends Tool {
String
urlTarget
=
null
;
String
user
=
null
;
String
password
=
""
;
String
server
l
ist
=
null
;
String
server
L
ist
=
null
;
for
(
int
i
=
0
;
args
!=
null
&&
i
<
args
.
length
;
i
++)
{
String
arg
=
args
[
i
];
if
(
arg
.
equals
(
"-urlSource"
))
{
...
...
@@ -69,8 +69,8 @@ public class CreateCluster extends Tool {
user
=
args
[++
i
];
}
else
if
(
arg
.
equals
(
"-password"
))
{
password
=
args
[++
i
];
}
else
if
(
arg
.
equals
(
"-server
l
ist"
))
{
server
l
ist
=
args
[++
i
];
}
else
if
(
arg
.
equals
(
"-server
L
ist"
))
{
server
L
ist
=
args
[++
i
];
}
else
if
(
arg
.
equals
(
"-help"
)
||
arg
.
equals
(
"-?"
))
{
showUsage
();
return
;
...
...
@@ -80,11 +80,11 @@ public class CreateCluster extends Tool {
return
;
}
}
if
(
urlSource
==
null
||
urlTarget
==
null
||
user
==
null
||
server
l
ist
==
null
)
{
if
(
urlSource
==
null
||
urlTarget
==
null
||
user
==
null
||
server
L
ist
==
null
)
{
showUsage
();
return
;
}
process
(
urlSource
,
urlTarget
,
user
,
password
,
server
l
ist
);
process
(
urlSource
,
urlTarget
,
user
,
password
,
server
L
ist
);
}
/**
...
...
@@ -94,14 +94,14 @@ public class CreateCluster extends Tool {
* @param urlTarget the database URL of the copy
* @param user the user name
* @param password the password
* @param server
l
ist the server list
* @param server
L
ist the server list
* @throws SQLException
*/
public
void
execute
(
String
urlSource
,
String
urlTarget
,
String
user
,
String
password
,
String
server
l
ist
)
throws
SQLException
{
new
CreateCluster
().
process
(
urlSource
,
urlTarget
,
user
,
password
,
server
l
ist
);
public
void
execute
(
String
urlSource
,
String
urlTarget
,
String
user
,
String
password
,
String
server
L
ist
)
throws
SQLException
{
new
CreateCluster
().
process
(
urlSource
,
urlTarget
,
user
,
password
,
server
L
ist
);
}
private
void
process
(
String
urlSource
,
String
urlTarget
,
String
user
,
String
password
,
String
server
l
ist
)
throws
SQLException
{
private
void
process
(
String
urlSource
,
String
urlTarget
,
String
user
,
String
password
,
String
server
L
ist
)
throws
SQLException
{
Connection
conn
=
null
;
Statement
stat
=
null
;
try
{
...
...
@@ -136,14 +136,14 @@ public class CreateCluster extends Tool {
runscript
.
process
(
urlTarget
,
user
,
password
,
scriptFile
,
null
,
false
);
FileUtils
.
delete
(
scriptFile
);
// set the cluster to the server
l
ist on both databases
// set the cluster to the server
L
ist on both databases
conn
=
DriverManager
.
getConnection
(
urlSource
,
user
,
password
);
stat
=
conn
.
createStatement
();
stat
.
executeUpdate
(
"SET CLUSTER '"
+
server
l
ist
+
"'"
);
stat
.
executeUpdate
(
"SET CLUSTER '"
+
server
L
ist
+
"'"
);
conn
.
close
();
conn
=
DriverManager
.
getConnection
(
urlTarget
,
user
,
password
);
stat
=
conn
.
createStatement
();
stat
.
executeUpdate
(
"SET CLUSTER '"
+
server
l
ist
+
"'"
);
stat
.
executeUpdate
(
"SET CLUSTER '"
+
server
L
ist
+
"'"
);
}
finally
{
JdbcUtils
.
closeSilently
(
conn
);
JdbcUtils
.
closeSilently
(
stat
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论