Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
00004e3a
提交
00004e3a
authored
7月 05, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
The wrong exception was thrown when trying to connect to a server if the server was not running.
上级
4c28636c
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
17 行增加
和
7 行删除
+17
-7
ErrorCode.java
h2/src/main/org/h2/constant/ErrorCode.java
+6
-5
SessionRemote.java
h2/src/main/org/h2/engine/SessionRemote.java
+2
-2
TestTools.java
h2/src/test/org/h2/test/unit/TestTools.java
+9
-0
没有找到文件。
h2/src/main/org/h2/constant/ErrorCode.java
浏览文件 @
00004e3a
...
@@ -1058,11 +1058,12 @@ public class ErrorCode {
...
@@ -1058,11 +1058,12 @@ public class ErrorCode {
public
static
final
int
DUPLICATE_PROPERTY_1
=
90066
;
public
static
final
int
DUPLICATE_PROPERTY_1
=
90066
;
/**
/**
* The error with code <code>90067</code> is thrown when
* The error with code <code>90067</code> is thrown when the client could
* the connection to the database is lost. A possible reason
* not connect to the database, or if the connection was lost. Possible
* is that the database connection has been closed due to a shutdown,
* reasons are: the database server is not running on the given port, the
* or that the server is stopped. Other causes could be:
* connection was closed due to a shutdown, or the server was stopped. Other
* the server is not an H2 server, or the network connection is broken.
* possible causes are: the server is not an H2 server, or the network
* connection is broken.
*/
*/
public
static
final
int
CONNECTION_BROKEN_1
=
90067
;
public
static
final
int
CONNECTION_BROKEN_1
=
90067
;
...
...
h2/src/main/org/h2/engine/SessionRemote.java
浏览文件 @
00004e3a
...
@@ -319,7 +319,7 @@ public class SessionRemote extends SessionWithState implements SessionFactory, D
...
@@ -319,7 +319,7 @@ public class SessionRemote extends SessionWithState implements SessionFactory, D
String
[]
servers
=
StringUtils
.
arraySplit
(
server
,
','
,
true
);
String
[]
servers
=
StringUtils
.
arraySplit
(
server
,
','
,
true
);
int
len
=
servers
.
length
;
int
len
=
servers
.
length
;
transferList
.
clear
();
transferList
.
clear
();
// TODO cluster: support
at most
2 connections
// TODO cluster: support
more than
2 connections
boolean
switchOffCluster
=
false
;
boolean
switchOffCluster
=
false
;
try
{
try
{
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
...
@@ -328,7 +328,7 @@ public class SessionRemote extends SessionWithState implements SessionFactory, D
...
@@ -328,7 +328,7 @@ public class SessionRemote extends SessionWithState implements SessionFactory, D
transferList
.
add
(
trans
);
transferList
.
add
(
trans
);
}
catch
(
IOException
e
)
{
}
catch
(
IOException
e
)
{
if
(
len
==
1
)
{
if
(
len
==
1
)
{
throw
DbException
.
convert
(
e
);
throw
DbException
.
get
(
ErrorCode
.
CONNECTION_BROKEN_1
,
e
,
e
.
getMessage
()
);
}
}
switchOffCluster
=
true
;
switchOffCluster
=
true
;
}
}
...
...
h2/src/test/org/h2/test/unit/TestTools.java
浏览文件 @
00004e3a
...
@@ -209,6 +209,14 @@ public class TestTools extends TestBase {
...
@@ -209,6 +209,14 @@ public class TestTools extends TestBase {
}
}
private
void
testWrongServer
()
throws
Exception
{
private
void
testWrongServer
()
throws
Exception
{
try
{
// try to connect when the server is not running
Connection
conn
=
getConnection
(
"jdbc:h2:tcp://localhost:9001/test"
);
conn
.
close
();
fail
();
}
catch
(
SQLException
e
)
{
assertEquals
(
ErrorCode
.
CONNECTION_BROKEN_1
,
e
.
getErrorCode
());
}
final
ServerSocket
serverSocket
=
new
ServerSocket
(
9001
);
final
ServerSocket
serverSocket
=
new
ServerSocket
(
9001
);
Thread
thread
=
new
Thread
()
{
Thread
thread
=
new
Thread
()
{
public
void
run
()
{
public
void
run
()
{
...
@@ -224,6 +232,7 @@ public class TestTools extends TestBase {
...
@@ -224,6 +232,7 @@ public class TestTools extends TestBase {
}
}
};
};
thread
.
start
();
thread
.
start
();
Thread
.
sleep
(
100
);
try
{
try
{
Connection
conn
=
getConnection
(
"jdbc:h2:tcp://localhost:9001/test"
);
Connection
conn
=
getConnection
(
"jdbc:h2:tcp://localhost:9001/test"
);
conn
.
close
();
conn
.
close
();
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论