Better exception handling.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1638111 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a6e69b2a5e
commit
957295aceb
|
@ -222,8 +222,8 @@ public class CSVPrinterTest {
|
|||
public void testJdbcPrinter() throws IOException, ClassNotFoundException, SQLException {
|
||||
final StringWriter sw = new StringWriter();
|
||||
final Connection connection = geH2Connection();
|
||||
setUpTable(connection);
|
||||
try {
|
||||
setUpTable(connection);
|
||||
final Statement stmt = connection.createStatement();
|
||||
final CSVPrinter printer = new CSVPrinter(sw, CSVFormat.DEFAULT);
|
||||
printer.printRecords(stmt.executeQuery("select ID, NAME from TEST"));
|
||||
|
@ -239,8 +239,8 @@ public class CSVPrinterTest {
|
|||
final StringWriter sw = new StringWriter();
|
||||
Class.forName("org.h2.Driver");
|
||||
final Connection connection = geH2Connection();
|
||||
setUpTable(connection);
|
||||
try {
|
||||
setUpTable(connection);
|
||||
@SuppressWarnings("resource")
|
||||
// Closed when the connection is closed.
|
||||
final Statement stmt = connection.createStatement();
|
||||
|
@ -262,8 +262,8 @@ public class CSVPrinterTest {
|
|||
final StringWriter sw = new StringWriter();
|
||||
Class.forName("org.h2.Driver");
|
||||
final Connection connection = geH2Connection();
|
||||
setUpTable(connection);
|
||||
try {
|
||||
setUpTable(connection);
|
||||
@SuppressWarnings("resource")
|
||||
// Closed when the connection is closed.
|
||||
final Statement stmt = connection.createStatement();
|
||||
|
|
Loading…
Reference in New Issue