Browse Source

Merge remote-tracking branch 'origin/master'

master
Johannes 10 years ago
parent
commit
8634482057
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/java/de/uniluebeck/mi/projmi6/db/DBHandler.java

+ 2
- 2
src/main/java/de/uniluebeck/mi/projmi6/db/DBHandler.java View File

@@ -566,7 +566,7 @@ public class DBHandler {

if (!isUpdate) {
ResultSet genkeys = statement.getGeneratedKeys();
while (genkeys.next()) {
if (genkeys.next()) {
return genkeys.getInt(1);
}
return -1; // Sollte nie vorkommen.
@@ -935,7 +935,7 @@ public class DBHandler {
/**
* Gibt die letzten 30 HL7 Logeintraege aus der DB zurueck.
*
* @return
* @return Liste der letzten 30 HL7LogEintraege.
* @throws SQLException
*/
public static List<HL7LogEntry> getLastHL7LogEntries() throws SQLException {


Loading…
Cancel
Save