Child: [r24] (diff)

Download this file

JdbcExample.java    57 lines (46 with data), 791 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
*
*
*/
import au.com.bytecode.opencsv.CSVWriter;
import java.io.StringWriter;
import java.sql.ResultSet;
import java.sql.SQLException;
public class JdbcExample
{
public static void main(String[] args)
{
ResultSet rs = null;
try
{
rs = getResultSet();
StringWriter sw = new StringWriter();
CSVWriter writer = new CSVWriter(sw);
writer.writeAll(rs, false);
writer.close();
System.out.println(sw);
}
catch (Exception ex)
{
ex.printStackTrace();
}
finally
{
if (rs != null)
{
try
{
rs.close();
}
catch (SQLException ignore)
{
// ignore
}
}
}
}
private static ResultSet getResultSet()
{
return new MockResultSet(10);
}
}