made the following protected:
[mir.git] / source / mir / storage / Database.java
1 /*
2  * put your module comment here
3  */
4 package mir.storage;
5
6 import  java.sql.*;
7 import  java.lang.*;
8 import  java.io.*;
9 import  java.util.*;
10 import  freemarker.template.*;
11 import  com.javaexchange.dbConnectionBroker.*;
12 import  mir.storage.StorageObject;
13 import  mir.entity.*;
14 import  mir.misc.*;
15
16
17 /**
18  * Diese Klasse implementiert die Zugriffsschicht auf die Datenbank.
19  * Alle Projektspezifischen Datenbankklassen erben von dieser Klasse.
20  * In den Unterklassen wird im Minimalfall nur die Tabelle angegeben.
21  * Im Konfigurationsfile findet sich eine Verweis auf den verwendeten
22  * Treiber, Host, User und Passwort, ueber den der Zugriff auf die
23  * Datenbank erfolgt.
24  *
25  * @author RK
26  * @version 16.7.1999
27  */
28 public class Database implements StorageObject {
29
30   protected DbConnectionBroker        myBroker;
31   protected String                    theTable;
32   protected String                    theCoreTable=null;
33   protected String                    thePKeyName="id";
34   protected int                       thePKeyType;
35   protected boolean                   evaluatedMetaData=false;
36   protected ArrayList                 metadataFields,metadataLabels,metadataNotNullFields;
37   protected int[]                     metadataTypes;
38   protected Class                     theEntityClass;
39   protected StorageObject             myselfDatabase;
40   protected HashMap                   cache;
41   protected SimpleList                popupCache=null;
42   protected boolean                   hasPopupCache = false;
43   protected SimpleHash                hashCache=null;
44   protected boolean                   hasTimestamp=true;
45   private       String                database_driver;
46   private       String                database_url;
47   private int                         defaultLimit;
48   protected DatabaseAdaptor             theAdaptor;
49   protected Logfile                   theLog;
50   protected Connection                con;
51
52   /**
53    * Kontruktor bekommt den Filenamen des Konfigurationsfiles übergeben.
54    * Aus diesem file werden <code>Database.Logfile</code>,
55    * <code>Database.Username</code>,<code>Database.Password</code>,
56    * <code>Database.Host</code> und <code>Database.Adaptor</code>
57    * ausgelesen und ein Broker für die Verbindugen zur Datenbank
58    * erzeugt.
59    *
60    * @param   String confFilename Dateiname der Konfigurationsdatei
61    */
62   public Database() {
63     theLog = Logfile.getInstance(MirConfig.getProp("Home") + MirConfig.getProp("Database.Logfile"));
64     String database_username=MirConfig.getProp("Database.Username");
65     String database_password=MirConfig.getProp("Database.Password");
66     String database_host=MirConfig.getProp("Database.Host");
67     String theAdaptorName=MirConfig.getProp("Database.Adaptor");
68     try {
69       theEntityClass = Class.forName("mir.entity.GenericEntity");
70       theAdaptor = (DatabaseAdaptor)Class.forName(theAdaptorName).newInstance();
71       defaultLimit = Integer.parseInt(MirConfig.getProp("Database.Limit"));
72       database_driver=theAdaptor.getDriver();
73       database_url=theAdaptor.getURL(database_username,database_password,database_host);
74       theLog.printDebugInfo("adding Broker with: " +database_driver+":"+database_url  );
75       MirConfig.addBroker(database_driver,database_url);
76       myBroker=MirConfig.getBroker();
77     }
78     catch (Exception e){
79       theLog.printError("Bei Konstruktion von Database() with " + theAdaptorName + " -- " +e.toString());
80     }
81   }
82
83   /**
84    * Liefert die Entity-Klasse zurück, in der eine Datenbankzeile gewrappt
85    * wird. Wird die Entity-Klasse durch die erbende Klasse nicht überschrieben,
86    * wird eine mir.entity.GenericEntity erzeugt.
87    *
88    * @return Class-Objekt der Entity
89    */
90   public java.lang.Class getEntityClass () {
91     return  theEntityClass;
92   }
93
94   /**
95    * Liefert die Standardbeschränkung von select-Statements zurück, also
96    * wieviel Datensätze per Default selektiert werden.
97    *
98    * @return Standard-Anzahl der Datensätze
99    */
100   public int getLimit () {
101     return  defaultLimit;
102   }
103
104   /**
105    * Liefert den Namen des Primary-Keys zurück. Wird die Variable nicht von
106    * der erbenden Klasse überschrieben, so ist der Wert <code>PKEY</code>
107    * @return Name des Primary-Keys
108    */
109   public String getIdName () {
110     return  thePKeyName;
111   }
112
113   /**
114    * Liefert den Namen der Tabelle, auf das sich das Datenbankobjekt bezieht.
115    *
116    * @return Name der Tabelle
117    */
118   public String getTableName () {
119     return  theTable;
120   }
121
122   /*
123    *   Dient dazu vererbte Tabellen bei objectrelationalen DBMS
124    *   zu speichern, wenn die id einer Tabelle in der parenttabelle verwaltet wird.
125    *   @return liefert theCoreTabel als String zurueck, wenn gesetzt, sonst
126    *    the Table
127    */
128
129   public String getCoreTable(){
130     if (theCoreTable!=null) return theCoreTable;
131     else return theTable;
132   }
133
134   /**
135    * Liefert Feldtypen der Felder der Tabelle zurueck (s.a. java.sql.Types)
136    * @return int-Array mit den Typen der Felder
137    * @exception StorageObjectException
138    */
139   public int[] getTypes () throws StorageObjectException {
140     if (metadataTypes == null)
141       get_meta_data();
142     return  metadataTypes;
143   }
144
145   /**
146    * Liefert eine Liste der Labels der Tabellenfelder
147    * @return ArrayListe mit Labeln
148    * @exception StorageObjectException
149    */
150   public ArrayList getLabels () throws StorageObjectException {
151     if (metadataLabels == null)
152       get_meta_data();
153     return  metadataLabels;
154   }
155
156   /**
157    * Liefert eine Liste der Felder der Tabelle
158    * @return ArrayList mit Feldern
159    * @exception StorageObjectException
160    */
161   public ArrayList getFields () throws StorageObjectException {
162     if (metadataFields == null)
163       get_meta_data();
164     return  metadataFields;
165   }
166
167
168   /*
169    *   Gets value out of ResultSet according to type and converts to String
170    *   @param inValue  Wert aus ResultSet.
171    *   @param aType  Datenbanktyp.
172    *   @return liefert den Wert als String zurueck. Wenn keine Umwandlung moeglich
173    *           dann /unsupported value/
174    */
175   private String getValueAsString (ResultSet rs, int valueIndex, int aType) throws StorageObjectException {
176     String outValue = null;
177     if (rs != null) {
178       try {
179         switch (aType) {
180           case java.sql.Types.BIT:
181             outValue = (rs.getBoolean(valueIndex) == true) ? "1" : "0";
182             break;
183           case java.sql.Types.INTEGER:case java.sql.Types.SMALLINT:case java.sql.Types.TINYINT:case java.sql.Types.BIGINT:
184             int out = rs.getInt(valueIndex);
185             if (!rs.wasNull())
186               outValue = new Integer(out).toString();
187             break;
188           case java.sql.Types.NUMERIC:
189             long outl = rs.getLong(valueIndex);
190             if (!rs.wasNull())
191               outValue = new Long(outl).toString();
192             break;
193           case java.sql.Types.REAL:
194             float tempf = rs.getFloat(valueIndex);
195             if (!rs.wasNull()) {
196               tempf *= 10;
197               tempf += 0.5;
198               int tempf_int = (int)tempf;
199               tempf = (float)tempf_int;
200               tempf /= 10;
201               outValue = "" + tempf;
202               outValue = outValue.replace('.', ',');
203             }
204             break;
205           case java.sql.Types.DOUBLE:
206             double tempd = rs.getDouble(valueIndex);
207             if (!rs.wasNull()) {
208               tempd *= 10;
209               tempd += 0.5;
210               int tempd_int = (int)tempd;
211               tempd = (double)tempd_int;
212               tempd /= 10;
213               outValue = "" + tempd;
214               outValue = outValue.replace('.', ',');
215             }
216             break;
217           case java.sql.Types.CHAR:case java.sql.Types.VARCHAR:case java.sql.Types.LONGVARCHAR:
218             outValue = rs.getString(valueIndex);
219             if (outValue != null)
220               outValue = StringUtil.encodeHtml(StringUtil.unquote(outValue));
221             break;
222           case java.sql.Types.LONGVARBINARY:
223             outValue = rs.getString(valueIndex);
224             if (outValue != null)
225               outValue = StringUtil.encodeHtml(StringUtil.unquote(outValue));
226             break;
227           case java.sql.Types.TIMESTAMP:
228             Timestamp timestamp = (rs.getTimestamp(valueIndex));
229             if (!rs.wasNull()) {
230               outValue = timestamp.toString();
231             }
232             break;
233           default:
234             outValue = "<unsupported value>";
235             theLog.printWarning("Unsupported Datatype: at " + valueIndex +
236                 " (" + aType + ")");
237         }
238       } catch (SQLException e) {
239         throw  new StorageObjectException("Could not get Value out of Resultset -- "
240             + e.toString());
241       }
242     }
243     return  outValue;
244   }
245
246   /*
247    *   select-Operator um einen Datensatz zu bekommen.
248    *   @param id Primaerschluessel des Datensatzes.
249    *   @return liefert EntityObject des gefundenen Datensatzes oder null.
250    */
251   public Entity selectById(String id)
252     throws StorageObjectException {
253
254     if (id==null||id.equals(""))
255       throw new StorageObjectException("id war null");
256     if (cache != null && cache.containsKey(id))
257       return (Entity)cache.get(id);  // wenn cache gesetzt, evtl. kein roundtrip zur Datenbank
258
259     Statement stmt=null;Connection con=getPooledCon();
260     Entity returnEntity=null;
261     try {
262       ResultSet rs;
263       String selectSql = "select * from " + theTable + " where " + thePKeyName + "=" + id;
264       stmt = con.createStatement();
265       rs = executeSql(stmt, selectSql);
266       if (rs != null) {
267         if (evaluatedMetaData==false) evalMetaData(rs.getMetaData());
268         if (rs.next())
269           returnEntity = makeEntityFromResultSet(rs);
270         else theLog.printDebugInfo("Keine daten fuer id: " + id + "in Tabelle" + theTable);
271         rs.close();
272       } else {
273         theLog.printDebugInfo("No Data for Id " + id + " in Table " + theTable);
274       }
275     } catch (SQLException sqe){
276       throwSQLException(sqe,"selectById"); return null;
277     } catch (NumberFormatException e) {
278       theLog.printError("ID ist keine Zahl: " + id);
279     } finally {
280       freeConnection(con,stmt);
281     }
282
283     return returnEntity;
284   }
285
286   /**
287    *   select-Operator um Datensaetze zu bekommen, die key = value erfuellen.
288    *   @param key  Datenbankfeld der Bedingung.
289    *   @param value  Wert die der key anehmen muss.
290    *   @return EntityList mit den gematchten Entities
291    */
292
293   public EntityList selectByFieldValue(String aField, String aValue)
294     throws StorageObjectException {
295
296     return selectByFieldValue(aField, aValue, 0);
297   }
298
299   /**
300    *   select-Operator um Datensaetze zu bekommen, die key = value erfuellen.
301    *   @param key  Datenbankfeld der Bedingung.
302    *   @param value  Wert die der key anehmen muss.
303    *   @param offset  Gibt an ab welchem Datensatz angezeigt werden soll.
304    *   @return EntityList mit den gematchten Entities
305    */
306
307   public EntityList selectByFieldValue(String aField, String aValue, int offset)
308     throws StorageObjectException {
309
310     return selectByWhereClause(aField + "=" + aValue, offset);
311   }
312
313
314   /**
315    * select-Operator liefert eine EntityListe mit den gematchten Datensätzen zurück.
316    * Also offset wird der erste Datensatz genommen.
317    *
318    * @param wc where-Clause
319    * @return EntityList mit den gematchten Entities
320    * @exception StorageObjectException
321    */
322   public EntityList selectByWhereClause(String where)
323     throws StorageObjectException {
324
325     return selectByWhereClause(where, 0);
326   }
327
328
329   /**
330    * select-Operator liefert eine EntityListe mit den gematchten Datensätzen zurück.
331    * Als maximale Anzahl wird das Limit auf der Konfiguration genommen.
332    *
333    * @param wc where-Clause
334    * @param offset ab welchem Datensatz.
335    * @return EntityList mit den gematchten Entities
336    * @exception StorageObjectException
337    */
338   public EntityList selectByWhereClause(String whereClause, int offset)
339     throws StorageObjectException {
340
341     return selectByWhereClause(whereClause, null, offset);
342   }
343
344   /**
345    * select-Operator liefert eine EntityListe mit den gematchten Datensätzen zurück.
346    * Also offset wird der erste Datensatz genommen.
347    * Als maximale Anzahl wird das Limit auf der Konfiguration genommen.
348    *
349    * @param wc where-Clause
350    * @param ob orderBy-Clause
351    * @return EntityList mit den gematchten Entities
352    * @exception StorageObjectException
353    */
354
355   public EntityList selectByWhereClause(String where, String order)
356     throws StorageObjectException {
357
358     return selectByWhereClause(where, order, 0);
359   }
360   /**
361    * select-Operator liefert eine EntityListe mit den gematchten Datensätzen zurück.
362    * Als maximale Anzahl wird das Limit auf der Konfiguration genommen.
363    *
364    * @param wc where-Clause
365    * @param ob orderBy-Clause
366    * @param offset ab welchem Datensatz
367    * @return EntityList mit den gematchten Entities
368    * @exception StorageObjectException
369    */
370
371   public EntityList selectByWhereClause(String whereClause, String orderBy, int offset)
372     throws StorageObjectException {
373
374     return selectByWhereClause(whereClause, orderBy, offset, defaultLimit);
375   }
376
377
378   /**
379    * select-Operator liefert eine EntityListe mit den gematchten Datensätzen zurück.
380    * @param wc where-Clause
381    * @param ob orderBy-Clause
382    * @param offset ab welchem Datensatz
383    * @param limit wieviele Datensätze
384    * @return EntityList mit den gematchten Entities
385    * @exception StorageObjectException
386    */
387
388   public EntityList selectByWhereClause(String wc, String ob, int offset, int limit)
389     throws StorageObjectException   {
390
391     // local
392     EntityList    theReturnList=null;
393     Connection    con=null;
394     Statement     stmt=null;
395     ResultSet     rs;
396     int       offsetCount = 0;
397     int           count=0;
398
399
400     // build sql-statement
401     if (wc != null && wc.length() == 0) {
402       wc = null;
403     }
404     StringBuffer countSql = new StringBuffer("select count(*) from ").append(theTable);
405     StringBuffer selectSql = new StringBuffer("select * from ").append(theTable);
406     if (wc != null) {
407       selectSql.append(" where ").append(wc);
408       countSql.append(" where ").append(wc);
409     }
410     if (ob != null && !(ob.length() == 0)) {
411       selectSql.append(" order by ").append(ob);
412     }
413     if (theAdaptor.hasLimit()) {
414       if (limit > -1 && offset > -1) {
415         selectSql.append(" limit ");
416         if (theAdaptor.reverseLimit()) {
417           selectSql.append(limit).append(",").append(offset);
418         }
419         else {
420           selectSql.append(offset).append(",").append(limit);
421         }
422       }
423     }
424
425       // execute sql
426     try {
427       con = getPooledCon();
428       stmt = con.createStatement();
429       // counting rows
430       if (theAdaptor.hasLimit()) {
431         rs = executeSql(stmt, countSql.toString());
432         if (rs != null) {
433           if (rs.next())
434             count = rs.getInt(1);
435           rs.close();
436         }
437         else
438           theLog.printError("Mh. Konnte nicht zaehlen: " + countSql);
439       }
440       // hier select
441       rs = executeSql(stmt, selectSql.toString());
442       if (rs != null) {
443         theReturnList = new EntityList();
444         if (evaluatedMetaData == false) {
445           evalMetaData(rs.getMetaData());
446         }
447         Entity theResultEntity;
448         while (rs.next()) {
449           theResultEntity = makeEntityFromResultSet(rs);
450           theReturnList.add(theResultEntity);
451           offsetCount++;
452         }
453         rs.close();
454       }
455       // making entitylist
456       if (!(theAdaptor.hasLimit()))
457         count = offsetCount;
458       if (theReturnList != null) {
459         theReturnList.setCount(count);
460         theReturnList.setOffset(offset);
461         theReturnList.setWhere(wc);
462         theReturnList.setOrder(ob);
463         if (offset >= limit) {
464           theReturnList.setPrevBatch(offset - limit);
465         }
466         if (offset + offsetCount < count) {
467           theReturnList.setNextBatch(offset + limit);
468         }
469       }
470     } catch (SQLException sqe) {
471       throwSQLException(sqe, "selectByWhereClause");
472     } finally {
473       freeConnection(con, stmt);
474     }
475     return  theReturnList;
476   }
477
478   /**
479    *  Bastelt aus einer Zeile der Datenbank ein EntityObjekt.
480    *
481    *  @param rs Das ResultSetObjekt.
482    *  @return Entity Die Entity.
483    */
484
485   public Entity makeEntityFromResultSet (ResultSet rs) throws StorageObjectException {
486     HashMap theResultHash = new HashMap();
487     String theResult = null;
488     int theType;
489     Entity returnEntity = null;
490     try {
491       int size = metadataFields.size();
492       for (int i = 0; i < size; i++) {
493         // alle durchlaufen bis nix mehr da
494         theType = metadataTypes[i];
495         if (theType == java.sql.Types.LONGVARBINARY) {
496           InputStream us = rs.getAsciiStream(i + 1);
497           if (us != null) {
498             InputStreamReader is = new InputStreamReader(us);
499             char[] data = new char[32768];
500             StringBuffer theResultString = new StringBuffer();
501             int len;
502             while ((len = is.read(data)) > 0) {
503               theResultString.append(data, 0, len);
504             }
505             is.close();
506             theResult = theResultString.toString();
507           }
508           else {
509             theResult = null;
510           }
511         }
512         else {
513           theResult = getValueAsString(rs, (i + 1), theType);
514         }
515         if (theResult != null) {
516           theResultHash.put(metadataFields.get(i), theResult);
517         }
518       }
519       if (cache != null && theResultHash.containsKey(thePKeyName) && cache.containsKey((String)theResultHash.get(thePKeyName))) {
520         //theLog.printDebugInfo("CACHE: (out) "+ theResultHash.get(thePKeyName)+ " :"+theTable);
521         returnEntity = (Entity)cache.get((String)theResultHash.get(thePKeyName));
522       }
523       else {
524         if (theEntityClass != null) {
525           returnEntity = (Entity)theEntityClass.newInstance();
526           returnEntity.setValues(theResultHash);
527           returnEntity.setStorage(myselfDatabase);
528           if (cache != null) {
529             //theLog.printDebugInfo("CACHE: ( in) " + returnEntity.getId() + " :"+theTable);
530             cache.put(returnEntity.getId(), returnEntity);
531           }
532         }
533         else {
534           throwStorageObjectException("Interner Fehler theEntityClass nicht gesetzt!");
535         }
536       }
537     }           // try
538     catch (IllegalAccessException e) {
539       throwStorageObjectException("Kein Zugriff! -- " + e.toString());
540     } catch (IOException e) {
541       throwStorageObjectException("IOException! -- " + e.toString());
542     } catch (InstantiationException e) {
543       throwStorageObjectException("Keine Instantiiierung! -- " + e.toString());
544     } catch (SQLException sqe) {
545       throwSQLException(sqe, "makeEntityFromResultSet");
546       return  null;
547     }
548     return  returnEntity;
549   }
550
551   /**
552    * insert-Operator: fügt eine Entity in die Tabelle ein. Eine Spalte WEBDB_CREATE
553    * wird automatisch mit dem aktuellen Datum gefuellt.
554    *
555    * @param theEntity
556    * @return der Wert des Primary-keys der eingefügten Entity
557    */
558   public String insert (Entity theEntity) throws StorageObjectException {
559     String returnId = null;
560     Connection con = null;
561     PreparedStatement pstmt = null;
562     //cache
563     invalidatePopupCache();
564     try {
565       HashMap theEntityValues = theEntity.getValues();
566       ArrayList streamedInput = theEntity.streamedInput();
567       StringBuffer f = new StringBuffer();
568       StringBuffer v = new StringBuffer();
569       String aField, aValue;
570       boolean firstField = true;
571       // make sql-string
572       for (int i = 0; i < getFields().size(); i++) {
573         aField = (String)getFields().get(i);
574         if (!aField.equals(thePKeyName)) {
575           aValue = null;
576           // sonderfaelle
577           if (aField.equals("webdb_create")) {
578             aValue = "NOW()";
579           }
580           else {
581             if (streamedInput != null && streamedInput.contains(aField)) {
582               aValue = "?";
583             }
584             else {
585               if (theEntityValues.containsKey(aField)) {
586                 aValue = "'" + StringUtil.quote((String)theEntityValues.get(aField))
587                     + "'";
588               }
589             }
590           }
591           // wenn Wert gegeben, dann einbauen
592           if (aValue != null) {
593             if (firstField == false) {
594               f.append(",");
595               v.append(",");
596             }
597             else {
598               firstField = false;
599             }
600             f.append(aField);
601             v.append(aValue);
602           }
603         }
604       }         // end for
605       // insert into db
606       StringBuffer sqlBuf = new StringBuffer("insert into ").append(theTable).append("(").append(f).append(") values (").append(v).append(")");
607       String sql = sqlBuf.toString();
608       theLog.printInfo("INSERT: " + sql);
609       con = getPooledCon();
610       con.setAutoCommit(false);
611       pstmt = con.prepareStatement(sql);
612       if (streamedInput != null) {
613         for (int i = 0; i < streamedInput.size(); i++) {
614           String inputString = (String)theEntityValues.get(streamedInput.get(i));
615           pstmt.setBytes(i + 1, inputString.getBytes());
616         }
617       }
618       int ret = pstmt.executeUpdate();
619       if(ret == 0){
620         //insert failed
621         return null;
622       }
623       pstmt = con.prepareStatement(theAdaptor.getLastInsertSQL((Database)myselfDatabase));
624       ResultSet rs = pstmt.executeQuery();
625       rs.next();
626       returnId = rs.getString(1);
627       theEntity.setId(returnId);
628     } catch (SQLException sqe) {
629       throwSQLException(sqe, "insert");
630     } finally {
631       try {
632         con.setAutoCommit(true);
633       } catch (Exception e) {
634         ;
635       }
636       freeConnection(con, pstmt);
637     }
638     return  returnId;
639   }
640
641   /**
642    * update-Operator: aktualisiert eine Entity. Eine Spalte WEBDB_LASTCHANGE
643    * wird automatisch mit dem aktuellen Datum gefuellt.
644    *
645    * @param theEntity
646    */
647   public void update (Entity theEntity) throws StorageObjectException {
648     Connection con = null;
649     PreparedStatement pstmt = null;
650     ArrayList streamedInput = theEntity.streamedInput();
651     HashMap theEntityValues = theEntity.getValues();
652     String id = theEntity.getId();
653     String aField;
654     StringBuffer fv = new StringBuffer();
655     boolean firstField = true;
656     //cache
657     invalidatePopupCache();
658     // build sql statement
659     for (int i = 0; i < getFields().size(); i++) {
660       aField = (String)metadataFields.get(i);
661       // only normal cases
662       if (!(aField.equals(thePKeyName) || aField.equals("webdb_create") ||
663           aField.equals("webdb_lastchange") || (streamedInput != null && streamedInput.contains(aField)))) {
664         if (theEntityValues.containsKey(aField)) {
665           if (firstField == false) {
666             fv.append(", ");
667           }
668           else {
669             firstField = false;
670           }
671           fv.append(aField).append("='").append(StringUtil.quote((String)theEntityValues.get(aField))).append("'");
672         }
673       }
674     }
675     StringBuffer sql = new StringBuffer("update ").append(theTable).append(" set ").append(fv);
676     // exceptions
677     if (metadataFields.contains("webdb_lastchange")) {
678       sql.append(",webdb_lastchange=NOW()");
679     }
680     if (streamedInput != null) {
681       for (int i = 0; i < streamedInput.size(); i++) {
682         sql.append(",").append(streamedInput.get(i)).append("=?");
683       }
684     }
685     sql.append(" where id=").append(id);
686     theLog.printInfo("UPDATE: " + sql);
687     // execute sql
688     try {
689       con = getPooledCon();
690       con.setAutoCommit(false);
691       pstmt = con.prepareStatement(sql.toString());
692       if (streamedInput != null) {
693         for (int i = 0; i < streamedInput.size(); i++) {
694           String inputString = (String)theEntityValues.get(streamedInput.get(i));
695           pstmt.setBytes(i + 1, inputString.getBytes());
696         }
697       }
698       pstmt.executeUpdate();
699     } catch (SQLException sqe) {
700       throwSQLException(sqe, "update");
701     } finally {
702       try {
703         con.setAutoCommit(true);
704       } catch (Exception e) {
705         ;
706       }
707       freeConnection(con, pstmt);
708     }
709   }
710
711   /*
712    *   delete-Operator
713    *   @param id des zu loeschenden Datensatzes
714    *   @return boolean liefert true zurueck, wenn loeschen erfolgreich war.
715    */
716   public boolean delete (String id) throws StorageObjectException {
717     Statement stmt = null;
718     Connection con = null;
719     String sql;
720     int res = 0;
721     // loeschen des caches
722     invalidatePopupCache();
723     sql = "delete from " + theTable + " where " + thePKeyName + "='" + id +
724         "'";
725     theLog.printInfo("DELETE " + sql);
726     try {
727       con = getPooledCon();
728       stmt = con.createStatement();
729       res = stmt.executeUpdate(sql);
730     } catch (SQLException sqe) {
731       throwSQLException(sqe, "delete");
732     } finally {
733       freeConnection(con, stmt);
734     }
735     if (cache != null) {
736       theLog.printInfo("CACHE: deleted " + id);
737       cache.remove(id);
738     }
739     return  (res > 0) ? true : false;
740   }
741
742   /* noch nicht implementiert.
743    * @return immer false
744    */
745   public boolean delete (EntityList theEntityList) {
746     invalidatePopupCache();
747     return  false;
748   }
749
750   /**
751    * Diese Methode sollte ueberschrieben werden, wenn fuer die abgeleitete Database-Klasse
752    * eine SimpleList mit Standard-Popupdaten erzeugt werden koennen soll.
753    * @return null
754    */
755   public SimpleList getPopupData () {
756     return  null;
757   }
758
759   /**
760    *  Holt Daten fuer Popups.
761    *  @param name  Name des Feldes.
762    *  @param hasNullValue  Wenn true wird eine leerer  Eintrag fuer die Popups erzeugt.
763    *  @return SimpleList Gibt freemarker.template.SimpleList zurueck.
764    */
765   public SimpleList getPopupData (String name, boolean hasNullValue) {
766     return  getPopupData(name, hasNullValue, null);
767   }
768
769   /**
770    *  Holt Daten fuer Popups.
771    *  @param name  Name des Feldes.
772    *  @param hasNullValue  Wenn true wird eine leerer  Eintrag fuer die Popups erzeugt.
773    *  @param where  Schraenkt die Selektion der Datensaetze ein.
774    *  @return SimpleList Gibt freemarker.template.SimpleList zurueck.
775    */
776   public SimpleList getPopupData (String name, boolean hasNullValue, String where) {
777     return  getPopupData(name, hasNullValue, where, null);
778   }
779
780   /**
781    *  Holt Daten fuer Popups.
782    *  @param name  Name des Feldes.
783    *  @param hasNullValue  Wenn true wird eine leerer  Eintrag fuer die Popups erzeugt.
784    *  @param where  Schraenkt die Selektion der Datensaetze ein.
785    *  @param order  Gibt ein Feld als Sortierkriterium an.
786    *  @return SimpleList Gibt freemarker.template.SimpleList zurueck.
787    */
788   public SimpleList getPopupData (String name, boolean hasNullValue, String where,
789       String order) {
790     // caching
791     if (hasPopupCache && popupCache != null)
792       return  popupCache;
793     SimpleList simpleList = null;
794     Connection con = null;
795     Statement stmt = null;
796     // build sql
797     StringBuffer sql = new StringBuffer("select ").append(thePKeyName).append(",").append(name).append(" from ").append(theTable);
798     if (where != null && !(where.length() == 0))
799       sql.append(" where ").append(where);
800     sql.append(" order by ");
801     if (order != null && !(order.length() == 0))
802       sql.append(order);
803     else
804       sql.append(name);
805     // execute sql
806     try {
807       con = getPooledCon();
808       stmt = con.createStatement();
809       ResultSet rs = executeSql(stmt, sql.toString());
810       if (rs != null) {
811         if (evaluatedMetaData == false)
812           get_meta_data();
813         simpleList = new SimpleList();
814         SimpleHash popupDict;
815         if (hasNullValue) {
816           popupDict = new SimpleHash();
817           popupDict.put("key", "");
818           popupDict.put("value", "--");
819           simpleList.add(popupDict);
820         }
821         while (rs.next()) {
822           popupDict = new SimpleHash();
823           popupDict.put("key", getValueAsString(rs, 1, thePKeyType));
824           popupDict.put("value", rs.getString(2));
825           simpleList.add(popupDict);
826         }
827         rs.close();
828       }
829     } catch (Exception e) {
830       theLog.printDebugInfo(e.toString());
831     } finally {
832       freeConnection(con, stmt);
833     }
834     if (hasPopupCache) {
835       popupCache = simpleList;
836     }
837     return  simpleList;
838   }
839
840   /**
841    * Liefert alle Daten der Tabelle als SimpleHash zurueck. Dies wird verwandt,
842    * wenn in den Templates ein Lookup-Table benoetigt wird. Sollte nur bei kleinen
843    * Tabellen Verwendung finden.
844    * @return SimpleHash mit den Tabellezeilen.
845    */
846   public SimpleHash getHashData () {
847     if (hashCache == null) {
848       try {
849         hashCache = HTMLTemplateProcessor.makeSimpleHash(selectByWhereClause("",
850             -1));
851       } catch (StorageObjectException e) {
852         theLog.printDebugInfo(e.toString());
853       }
854     }
855     return  hashCache;
856   }
857
858   /* invalidates the popupCache
859    */
860   protected void invalidatePopupCache () {
861
862     /** @todo  invalidates toooo much */
863     popupCache = null;
864     hashCache = null;
865   }
866
867   /**
868    * Diese Methode fuehrt den Sqlstring <i>sql</i> aus und timed im Logfile.
869    * @param stmt Statemnt
870    * @param sql Sql-String
871    * @return ResultSet
872    * @exception StorageObjectException, SQLException
873    */
874   public ResultSet executeSql (Statement stmt, String sql) throws StorageObjectException,
875       SQLException {
876     long startTime = (new java.util.Date()).getTime();
877     ResultSet rs = stmt.executeQuery(sql);
878     theLog.printInfo((new java.util.Date().getTime() - startTime) + "ms. for: "
879         + sql);
880     return  rs;
881   }
882
883   /**
884    * Fuehrt Statement stmt aus und liefert Resultset zurueck. Das SQL-Statment wird
885    * getimed und geloggt.
886    * @param stmt PreparedStatement mit der SQL-Anweisung
887    * @return Liefert ResultSet des Statements zurueck.
888    * @exception StorageObjectException, SQLException
889    */
890   public ResultSet executeSql (PreparedStatement stmt) throws StorageObjectException,
891       SQLException {
892     long startTime = (new java.util.Date()).getTime();
893     ResultSet rs = stmt.executeQuery();
894     theLog.printInfo((new java.util.Date().getTime() - startTime) + "ms.");
895     return  rs;
896   }
897
898     /**
899    * returns the number of rows in the table
900    */
901   public int getSize(String where)
902     throws SQLException,StorageObjectException
903   {
904     long  startTime = (new java.util.Date()).getTime();
905     String sql = "SELECT count(*) FROM "+ theTable + " where " + where;
906     //theLog.printDebugInfo("trying: "+ sql);
907     Connection con = null;
908     Statement stmt = null;
909     int result = 0;
910
911     try {
912       con = getPooledCon();
913       stmt = con.createStatement();
914       ResultSet rs = executeSql(stmt,sql);
915       while(rs.next()){
916         result = rs.getInt(1);
917       }
918     } catch (SQLException e) {
919       theLog.printError(e.toString());
920     } finally {
921       freeConnection(con,stmt);
922     }
923     theLog.printInfo(theTable + " has "+ result +" rows where " + where);
924     theLog.printInfo((new java.util.Date().getTime() - startTime) + "ms. for: " + sql);
925     return result;
926   }
927
928   public int executeUpdate(Statement stmt, String sql)
929     throws StorageObjectException, SQLException
930   {
931     long  startTime = (new java.util.Date()).getTime();
932     //theLog.printDebugInfo("trying: "+ sql);
933     int rs = stmt.executeUpdate(sql);
934     theLog.printInfo((new java.util.Date().getTime() - startTime) + "ms. for: " + sql);
935     return rs;
936   }
937
938   public int executeUpdate(String sql)
939     throws StorageObjectException, SQLException
940   {
941     int result=-1;
942     long  startTime = (new java.util.Date()).getTime();
943     Connection con=null;PreparedStatement pstmt=null;
944     try {
945       con=getPooledCon();
946       pstmt = con.prepareStatement(sql);
947       result = pstmt.executeUpdate();
948     }
949     catch (Exception e) {theLog.printDebugInfo("settimage :: setImage gescheitert: "+e.toString());}
950     finally { freeConnection(con,pstmt); }
951     theLog.printInfo((new java.util.Date().getTime() - startTime) + "ms. for: " + sql);
952     return result;
953   }
954
955   /**
956    * Wertet ResultSetMetaData aus und setzt interne Daten entsprechend
957    * @param md ResultSetMetaData
958    * @exception StorageObjectException
959    */
960   private void evalMetaData (ResultSetMetaData md) throws StorageObjectException {
961     this.evaluatedMetaData = true;
962     this.metadataFields = new ArrayList();
963     this.metadataLabels = new ArrayList();
964     this.metadataNotNullFields = new ArrayList();
965     try {
966       int numFields = md.getColumnCount();
967       this.metadataTypes = new int[numFields];
968       String aField;
969       int aType;
970       for (int i = 1; i <= numFields; i++) {
971         aField = md.getColumnName(i);
972         metadataFields.add(aField);
973         metadataLabels.add(md.getColumnLabel(i));
974         aType = md.getColumnType(i);
975         metadataTypes[i - 1] = aType;
976         if (aField.equals(thePKeyName)) {
977           thePKeyType = aType;
978         }
979         if (md.isNullable(i) == md.columnNullable) {
980           metadataNotNullFields.add(aField);
981         }
982       }
983     } catch (SQLException e) {
984       throwSQLException(e, "evalMetaData");
985     }
986   }
987
988   /**
989    *  Wertet die Metadaten eines Resultsets fuer eine Tabelle aus,
990    *  um die alle Columns und Typen einer Tabelle zu ermitteln.
991    */
992   private void get_meta_data () throws StorageObjectException {
993     Connection con = null;
994     PreparedStatement pstmt = null;
995     String sql = "select * from " + theTable + " where 0=1";
996     try {
997       con = getPooledCon();
998       pstmt = con.prepareStatement(sql);
999       theLog.printInfo("METADATA: " + sql);
1000       ResultSet rs = pstmt.executeQuery();
1001       evalMetaData(rs.getMetaData());
1002       rs.close();
1003     } catch (SQLException e) {
1004       throwSQLException(e, "get_meta_data");
1005     } finally {
1006       freeConnection(con, pstmt);
1007     }
1008   }
1009
1010   /**
1011    * Datenbankverbindung wird geschlossen
1012    */
1013   public void disconnectPool () {
1014     try {
1015       myBroker.destroy(100);
1016     } catch (SQLException sqe) {
1017       ;
1018     }
1019   }
1020
1021   /**
1022    * Returns Connection-Object out of the PoolBroker.
1023    *
1024    * @return Connection Object.
1025    */
1026   public Connection getPooledCon () throws StorageObjectException {
1027     if (myBroker != null) {
1028       Connection con = myBroker.getConnection();
1029       if (con != null)
1030         return  con;
1031     }
1032     throw  new StorageObjectException("No connection to database!");
1033   }
1034
1035   /**
1036    * Connection und StatementObjekt werden geschlossen und an den Connectionpool
1037    * zurückgeben
1038    * @param con Connection zur Datenbank
1039    * @param stmt Statement-Objekt
1040    */
1041   public void freeConnection (Connection con, Statement stmt) {
1042     try {
1043       if (stmt != null)
1044         stmt.close();
1045     } catch (SQLException e1) {
1046       theLog.printDebugInfo(e1.toString());
1047     }
1048     if (con != null)
1049       myBroker.freeConnection(con);
1050     else
1051       theLog.printDebugInfo("Con was null!");
1052   }
1053
1054   /**
1055    * Wertet SQLException aus und wirft dannach eine StorageObjectException
1056    * @param sqe SQLException
1057    * @param wo Funktonsname, in der die SQLException geworfen wurde
1058    * @exception StorageObjectException
1059    */
1060   protected void throwSQLException (SQLException sqe, String wo) throws StorageObjectException {
1061     String state = "";
1062     String message = "";
1063     int vendor = 0;
1064     if (sqe != null) {
1065       state = sqe.getSQLState();
1066       message = sqe.getMessage();
1067       vendor = sqe.getErrorCode();
1068     }
1069     theLog.printError(state + ": " + vendor + " : " + message + " Funktion: "
1070         + wo);
1071     throw  new StorageObjectException((sqe == null) ? "undefined sql exception" :
1072         sqe.toString());
1073   }
1074
1075   /**
1076    * Loggt Fehlermeldung mit dem Parameter Message und wirft dannach eine StorageObjectException
1077    * @param message Nachricht mit dem Fehler
1078    * @exception StorageObjectException
1079    */
1080   void throwStorageObjectException (String message) throws StorageObjectException {
1081     theLog.printError(message);
1082     throw  new StorageObjectException(message);
1083   }
1084 }
1085
1086
1087