提交 bee49162 编写于 作者: Z zyyang

change

上级 a000e6d3
......@@ -27,6 +27,15 @@ public class MultiThreadsWithSameStatmentTest {
e.printStackTrace();
}
}
public void release(){
try {
stmt.close();
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
@Before
......@@ -46,8 +55,8 @@ public class MultiThreadsWithSameStatmentTest {
}
System.out.println();
}
resultSet.close();
service.release();
} catch (SQLException e) {
e.printStackTrace();
}
......@@ -57,6 +66,7 @@ public class MultiThreadsWithSameStatmentTest {
try {
Service service = new Service();
service.stmt.executeUpdate("insert into jdbctest.weather values(now,1)");
service.release();
} catch (SQLException e) {
e.printStackTrace();
}
......@@ -76,13 +86,5 @@ public class MultiThreadsWithSameStatmentTest {
@After
public void after() {
try {
if (stmt != null)
stmt.close();
if (conn != null)
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册