-
Notifications
You must be signed in to change notification settings - Fork 2
/
ResultatLogg.java
57 lines (44 loc) · 1.52 KB
/
ResultatLogg.java
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
57
package treningsdagbok;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class ResultatLogg extends DBConn{
public static String rightPadding(String str, int num) {
return String.format("%1$-" + num + "s", str);
}
public void getResultatLogg(String øvelse, String start, String slutt, int tall) {
Statement stmt = null;
ResultSet rs = null;
try {
stmt = conn.createStatement();
//ønsker du å sortere på dato (1) eller starttidspunkter (2)?
String insett = null;
if (tall == 1) {
insett = "dato";
}
else { insett = "tidspunkt"; }
String query = "select treningsid, navn, dato, tidspunkt, varighet, form, prestasjon, notat " +
"from (øvelse natural join øvelsepåøkt) natural join treningsøkt " +
"where navn = '" + øvelse + "' and " + insett +" between '" + start + "' and '"
+ slutt +"';";
if (stmt.execute(query)) {
rs = stmt.getResultSet();
}
String rad = rightPadding("Treningsid", 15) + rightPadding("øvelse", 15) + rightPadding("dato", 15) +
rightPadding("tidspunkt", 15) + rightPadding("varighet", 15) +
rightPadding("form", 15) + rightPadding("prestasjon", 15) + rightPadding("notat", 15);
while (rs.next()) {
String kolonne = null;
rad += "\n";
for (int i = 1; i < 9; i++) {
kolonne = rs.getString(i);
rad += rightPadding(kolonne, 15);
}
}
System.out.println(rad);
}
catch(SQLException ex) {
System.out.println("SQLException " + ex.getMessage());
}
}
}