blob: ceaf28e01d319905af69023b03e17748603978e0 (
plain)
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
|
package org.madore.damlengine;
import java.util.HashMap;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
public final class WeblogSummary {
public static final class EntrySummary {
int id;
String date;
String title;
public EntrySummary(int id, String date, String title) {
this.id = id;
this.date = date;
this.title = title;
}
}
public HashMap<Integer,EntrySummary> entries;
private static WeblogSummary singleton;
private WeblogSummary() {
this.entries = new HashMap<Integer,EntrySummary>();
}
public static WeblogSummary getSummary() {
if ( singleton != null )
return singleton;
singleton = new WeblogSummary();
try {
final Connection conn = WeblogDatabaseConnection.getConnection();
final PreparedStatement selSt
= conn.prepareStatement("SELECT id , edate , title FROM entries");
final ResultSet selRes = selSt.executeQuery();
while ( selRes.next() ) {
int id = selRes.getInt(1);
String date = selRes.getString(2);
String title = selRes.getString(3);
singleton.entries.put(new Integer(id), new EntrySummary(id, date, title));
}
} catch (SQLException e) {
throw new RuntimeException(e);
// Well, we'll have no summary. Too bad, but better than abort.
// singleton = null;
}
return singleton;
}
}
|