01cd614003783779f4b79db0f737f05e1ab788d2
[mir.git] / source / mir / storage / Database.java
1 /*
2  * Copyright (C) 2001, 2002 The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with  any library licensed under the Apache Software License,
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
23  * (or with modified versions of the above that use the same license as the above),
24  * and distribute linked combinations including the two.  You must obey the
25  * GNU General Public License in all respects for all of the code used other than
26  * the above mentioned libraries.  If you modify this file, you may extend this
27  * exception to your version of the file, but you are not obligated to do so.
28  * If you do not wish to do so, delete this exception statement from your version.
29  */
30 package mir.storage;
31
32 import java.io.IOException;
33 import java.io.InputStreamReader;
34 import java.sql.Connection;
35 import java.sql.PreparedStatement;
36 import java.sql.ResultSet;
37 import java.sql.ResultSetMetaData;
38 import java.sql.SQLException;
39 import java.sql.Statement;
40 import java.sql.Timestamp;
41 import java.text.ParseException;
42 import java.text.SimpleDateFormat;
43 import java.util.ArrayList;
44 import java.util.Calendar;
45 import java.util.GregorianCalendar;
46 import java.util.HashMap;
47 import java.util.*;
48 import java.util.Map;
49
50 import com.codestudio.util.SQLManager;
51
52 import freemarker.template.SimpleHash;
53 import freemarker.template.SimpleList;
54
55 import mir.config.MirPropertiesConfiguration;
56 import mir.config.MirPropertiesConfiguration.PropertiesConfigExc;
57 import mir.entity.Entity;
58 import mir.entity.EntityList;
59 import mir.entity.StorableObjectEntity;
60 import mir.log.LoggerWrapper;
61 import mir.misc.HTMLTemplateProcessor;
62 import mir.misc.StringUtil;
63 import mir.storage.store.ObjectStore;
64 import mir.storage.store.StorableObject;
65 import mir.storage.store.StoreContainerType;
66 import mir.storage.store.StoreIdentifier;
67 import mir.storage.store.StoreUtil;
68 import mir.util.JDBCStringRoutines;
69
70
71 /**
72  * Diese Klasse implementiert die Zugriffsschicht auf die Datenbank.
73  * Alle Projektspezifischen Datenbankklassen erben von dieser Klasse.
74  * In den Unterklassen wird im Minimalfall nur die Tabelle angegeben.
75  * Im Konfigurationsfile findet sich eine Verweis auf den verwendeten
76  * Treiber, Host, User und Passwort, ueber den der Zugriff auf die
77  * Datenbank erfolgt.
78  *
79  * @version $Id: Database.java,v 1.45 2003/06/24 21:49:22 idfx Exp $
80  * @author rk
81  *
82  */
83 public class Database implements StorageObject {
84   private static Class GENERIC_ENTITY_CLASS = mir.entity.StorableObjectEntity.class;
85   private static Class STORABLE_OBJECT_ENTITY_CLASS = mir.entity.StorableObjectEntity.class;
86
87
88   private static SimpleHash POPUP_EMPTYLINE = new SimpleHash();
89   protected static final ObjectStore o_store = ObjectStore.getInstance();
90   private static final int _millisPerHour = 60 * 60 * 1000;
91   private static final int _millisPerMinute = 60 * 1000;
92
93   static {
94     // always same object saves a little space
95     POPUP_EMPTYLINE.put("key", "");
96     POPUP_EMPTYLINE.put("value", "--");
97   }
98
99   protected LoggerWrapper logger;
100   protected MirPropertiesConfiguration configuration;
101   protected String theTable;
102   protected String theCoreTable = null;
103   protected String thePKeyName = "id";
104   protected int thePKeyType;
105   protected int thePKeyIndex;
106   protected boolean evaluatedMetaData = false;
107   protected ArrayList metadataFields;
108   protected ArrayList metadataLabels;
109   protected ArrayList metadataNotNullFields;
110   protected int[] metadataTypes;
111   protected Class theEntityClass;
112   protected SimpleList popupCache = null;
113   protected boolean hasPopupCache = false;
114   protected SimpleHash hashCache = null;
115   protected boolean hasTimestamp = true;
116   private String database_driver;
117   private String database_url;
118   private int defaultLimit;
119   protected DatabaseAdaptor theAdaptor;
120   private SimpleDateFormat _dateFormatterOut =
121     new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
122   private SimpleDateFormat _dateFormatterIn =
123     new SimpleDateFormat("yyyy-MM-dd HH:mm");
124   private Calendar _cal = new GregorianCalendar();
125
126   /**
127    * Kontruktor bekommt den Filenamen des Konfigurationsfiles ?bergeben.
128    * Aus diesem file werden <code>Database.Logfile</code>,
129    * <code>Database.Username</code>,<code>Database.Password</code>,
130    * <code>Database.Host</code> und <code>Database.Adaptor</code>
131    * ausgelesen und ein Broker f?r die Verbindugen zur Datenbank
132    * erzeugt.
133    *
134    * @param   String confFilename Dateiname der Konfigurationsdatei
135    */
136   public Database() throws StorageObjectFailure {
137     try {
138       configuration = MirPropertiesConfiguration.instance();
139     }
140     catch (PropertiesConfigExc e) {
141       throw new StorageObjectFailure(e);
142     }
143     logger = new LoggerWrapper("Database");
144
145     String theAdaptorName = configuration.getString("Database.Adaptor");
146     defaultLimit = Integer.parseInt(configuration.getString("Database.Limit"));
147
148     try {
149       theEntityClass = GENERIC_ENTITY_CLASS;
150       theAdaptor = (DatabaseAdaptor) Class.forName(theAdaptorName).newInstance();
151     }
152     catch (Throwable e) {
153       logger.error("Error in Database() constructor with " + theAdaptorName + " -- " + e.getMessage());
154       throw new StorageObjectFailure("Error in Database() constructor.", e);
155     }
156   }
157
158   /**
159    * Liefert die Entity-Klasse zur?ck, in der eine Datenbankzeile gewrappt
160    * wird. Wird die Entity-Klasse durch die erbende Klasse nicht ?berschrieben,
161    * wird eine mir.entity.GenericEntity erzeugt.
162    *
163    * @return Class-Objekt der Entity
164    */
165   public java.lang.Class getEntityClass() {
166     return theEntityClass;
167   }
168
169   /**
170    * Liefert die Standardbeschr?nkung von select-Statements zur?ck, also
171    * wieviel Datens?tze per Default selektiert werden.
172    *
173    * @return Standard-Anzahl der Datens?tze
174    */
175   public int getLimit() {
176     return defaultLimit;
177   }
178
179   /**
180    * Liefert den Namen des Primary-Keys zur?ck. Wird die Variable nicht von
181    * der erbenden Klasse ?berschrieben, so ist der Wert <code>PKEY</code>
182    * @return Name des Primary-Keys
183    */
184   public String getIdName() {
185     return thePKeyName;
186   }
187
188   /**
189    * Liefert den Namen der Tabelle, auf das sich das Datenbankobjekt bezieht.
190    *
191    * @return Name der Tabelle
192    */
193   public String getTableName() {
194     return theTable;
195   }
196
197   /*
198   *   Dient dazu vererbte Tabellen bei objectrelationalen DBMS
199   *   zu speichern, wenn die id einer Tabelle in der parenttabelle verwaltet
200   *   wird.
201   *   @return liefert theCoreTabel als String zurueck, wenn gesetzt, sonst
202   *    the Table
203    */
204   public String getCoreTable() {
205     if (theCoreTable != null) {
206       return theCoreTable;
207     }
208     else {
209       return theTable;
210     }
211   }
212
213   /**
214    * Liefert Feldtypen der Felder der Tabelle zurueck (s.a. java.sql.Types)
215    * @return int-Array mit den Typen der Felder
216    * @exception StorageObjectException
217    */
218   public int[] getTypes() throws StorageObjectFailure {
219     if (metadataTypes == null) {
220       get_meta_data();
221     }
222
223     return metadataTypes;
224   }
225
226   /**
227    * Liefert eine Liste der Labels der Tabellenfelder
228    * @return ArrayListe mit Labeln
229    * @exception StorageObjectException
230    */
231   public List getLabels() throws StorageObjectFailure {
232     if (metadataLabels == null) {
233       get_meta_data();
234     }
235
236     return metadataLabels;
237   }
238
239   /**
240    * Liefert eine Liste der Felder der Tabelle
241    * @return ArrayList mit Feldern
242    * @exception StorageObjectException
243    */
244   public List getFields() throws StorageObjectFailure {
245     if (metadataFields == null) {
246       get_meta_data();
247     }
248
249     return metadataFields;
250   }
251
252   /*
253   *   Gets value out of ResultSet according to type and converts to String
254   *   @param inValue  Wert aus ResultSet.
255   *   @param aType  Datenbanktyp.
256   *   @return liefert den Wert als String zurueck. Wenn keine Umwandlung moeglich
257   *           dann /unsupported value/
258    */
259   private String getValueAsString(ResultSet rs, int valueIndex, int aType)
260     throws StorageObjectFailure {
261     String outValue = null;
262
263     if (rs != null) {
264       try {
265         switch (aType) {
266           case java.sql.Types.BIT:
267             outValue = (rs.getBoolean(valueIndex) == true) ? "1" : "0";
268
269             break;
270
271           case java.sql.Types.INTEGER:
272           case java.sql.Types.SMALLINT:
273           case java.sql.Types.TINYINT:
274           case java.sql.Types.BIGINT:
275
276             int out = rs.getInt(valueIndex);
277
278             if (!rs.wasNull()) {
279               outValue = new Integer(out).toString();
280             }
281
282             break;
283
284           case java.sql.Types.NUMERIC:
285
286             /** @todo Numeric can be float or double depending upon
287              *  metadata.getScale() / especially with oracle */
288             long outl = rs.getLong(valueIndex);
289
290             if (!rs.wasNull()) {
291               outValue = new Long(outl).toString();
292             }
293
294             break;
295
296           case java.sql.Types.REAL:
297
298             float tempf = rs.getFloat(valueIndex);
299
300             if (!rs.wasNull()) {
301               tempf *= 10;
302               tempf += 0.5;
303
304               int tempf_int = (int) tempf;
305               tempf = (float) tempf_int;
306               tempf /= 10;
307               outValue = "" + tempf;
308               outValue = outValue.replace('.', ',');
309             }
310
311             break;
312
313           case java.sql.Types.DOUBLE:
314
315             double tempd = rs.getDouble(valueIndex);
316
317             if (!rs.wasNull()) {
318               tempd *= 10;
319               tempd += 0.5;
320
321               int tempd_int = (int) tempd;
322               tempd = (double) tempd_int;
323               tempd /= 10;
324               outValue = "" + tempd;
325               outValue = outValue.replace('.', ',');
326             }
327
328             break;
329
330           case java.sql.Types.CHAR:
331           case java.sql.Types.VARCHAR:
332           case java.sql.Types.LONGVARCHAR:
333             outValue = rs.getString(valueIndex);
334
335             break;
336
337           case java.sql.Types.LONGVARBINARY:
338             outValue = rs.getString(valueIndex);
339
340             break;
341
342           case java.sql.Types.TIMESTAMP:
343
344             // it's important to use Timestamp here as getting it
345             // as a string is undefined and is only there for debugging
346             // according to the API. we can make it a string through formatting.
347             // -mh
348             Timestamp timestamp = (rs.getTimestamp(valueIndex));
349
350             if (!rs.wasNull()) {
351               java.util.Date date = new java.util.Date(timestamp.getTime());
352               outValue = _dateFormatterOut.format(date);
353               _cal.setTime(date);
354
355               int offset =
356                   _cal.get(Calendar.ZONE_OFFSET) + _cal.get(Calendar.DST_OFFSET);
357               String tzOffset =
358                   StringUtil.zeroPaddingNumber(offset / _millisPerHour, 2, 2);
359               outValue = outValue + "+" + tzOffset;
360             }
361
362             break;
363
364           default:
365             outValue = "<unsupported value>";
366             logger.warn("Unsupported Datatype: at " + valueIndex + " (" + aType + ")");
367         }
368       } catch (SQLException e) {
369         throw new StorageObjectFailure("Could not get Value out of Resultset -- ",
370           e);
371       }
372     }
373
374     return outValue;
375   }
376
377   /*
378   *   select-Operator um einen Datensatz zu bekommen.
379   *   @param id Primaerschluessel des Datensatzes.
380   *   @return liefert EntityObject des gefundenen Datensatzes oder null.
381    */
382   public Entity selectById(String id) throws StorageObjectExc {
383     if ((id == null) || id.equals("")) {
384       throw new StorageObjectExc("Database.selectById: Missing id");
385     }
386
387     // ask object store for object
388     if (StoreUtil.implementsStorableObject(theEntityClass)) {
389       String uniqueId = id;
390
391       if (theEntityClass.equals(StorableObjectEntity.class)) {
392         uniqueId += ("@" + theTable);
393       }
394
395       StoreIdentifier search_sid = new StoreIdentifier(theEntityClass, uniqueId);
396       logger.debug("CACHE: (dbg) looking for sid " + search_sid.toString());
397
398       Entity hit = (Entity) o_store.use(search_sid);
399
400       if (hit != null) {
401         return hit;
402       }
403     }
404
405     Statement stmt = null;
406     Connection con = getPooledCon();
407     Entity returnEntity = null;
408
409     try {
410       ResultSet rs;
411
412       /** @todo better prepared statement */
413       String selectSql =
414         "select * from " + theTable + " where " + thePKeyName + "=" + id;
415       stmt = con.createStatement();
416       rs = executeSql(stmt, selectSql);
417
418       if (rs != null) {
419         if (evaluatedMetaData == false) {
420           evalMetaData(rs.getMetaData());
421         }
422
423         if (rs.next()) {
424           returnEntity = makeEntityFromResultSet(rs);
425         }
426         else {
427           logger.debug("No data for id: " + id + " in table " + theTable);
428         }
429
430         rs.close();
431       }
432       else {
433         logger.debug("No Data for Id " + id + " in Table " + theTable);
434       }
435     }
436     catch (SQLException sqe) {
437       throwSQLException(sqe, "selectById");
438       return null;
439     }
440     catch (NumberFormatException e) {
441       logger.error("ID is no number: " + id);
442     }
443     finally {
444       freeConnection(con, stmt);
445     }
446
447     return returnEntity;
448   }
449
450   /**
451    *   select-Operator um Datensaetze zu bekommen, die key = value erfuellen.
452    *   @param key  Datenbankfeld der Bedingung.
453    *   @param value  Wert die der key anehmen muss.
454    *   @return EntityList mit den gematchten Entities
455    */
456   public EntityList selectByFieldValue(String aField, String aValue) throws StorageObjectFailure {
457     return selectByFieldValue(aField, aValue, 0);
458   }
459
460   /**
461    *   select-Operator um Datensaetze zu bekommen, die key = value erfuellen.
462    *   @param key  Datenbankfeld der Bedingung.
463    *   @param value  Wert die der key anehmen muss.
464    *   @param offset  Gibt an ab welchem Datensatz angezeigt werden soll.
465    *   @return EntityList mit den gematchten Entities
466    */
467   public EntityList selectByFieldValue(String aField, String aValue, int offset) throws StorageObjectFailure {
468     return selectByWhereClause(aField + "=" + aValue, offset);
469   }
470
471   /**
472    * select-Operator liefert eine EntityListe mit den gematchten Datens?tzen zur?ck.
473    * Also offset wird der erste Datensatz genommen.
474    *
475    * @param wc where-Clause
476    * @return EntityList mit den gematchten Entities
477    * @exception StorageObjectException
478    */
479   public EntityList selectByWhereClause(String where) throws StorageObjectFailure {
480     return selectByWhereClause(where, 0);
481   }
482
483   /**
484    * select-Operator liefert eine EntityListe mit den gematchten Datens?tzen zur?ck.
485    * Als maximale Anzahl wird das Limit auf der Konfiguration genommen.
486    *
487    * @param wc where-Clause
488    * @param offset ab welchem Datensatz.
489    * @return EntityList mit den gematchten Entities
490    * @exception StorageObjectException
491    */
492   public EntityList selectByWhereClause(String whereClause, int offset) throws StorageObjectFailure {
493     return selectByWhereClause(whereClause, null, offset);
494   }
495
496   /**
497    * select-Operator liefert eine EntityListe mit den gematchten Datens?tzen zur?ck.
498    * Also offset wird der erste Datensatz genommen.
499    * Als maximale Anzahl wird das Limit auf der Konfiguration genommen.
500    *
501    * @param wc where-Clause
502    * @param ob orderBy-Clause
503    * @return EntityList mit den gematchten Entities
504    * @exception StorageObjectException
505    */
506   public EntityList selectByWhereClause(String where, String order) throws StorageObjectFailure {
507     return selectByWhereClause(where, order, 0);
508   }
509
510   /**
511    * select-Operator liefert eine EntityListe mit den gematchten Datens?tzen zur?ck.
512    * Als maximale Anzahl wird das Limit auf der Konfiguration genommen.
513    *
514    * @param wc where-Clause
515    * @param ob orderBy-Clause
516    * @param offset ab welchem Datensatz
517    * @return EntityList mit den gematchten Entities
518    * @exception StorageObjectException
519    */
520   public EntityList selectByWhereClause(String whereClause, String orderBy, int offset) throws StorageObjectFailure {
521     return selectByWhereClause(whereClause, orderBy, offset, defaultLimit);
522   }
523
524   /**
525    * select-Operator liefert eine EntityListe mit den gematchten Datens?tzen zur?ck.
526    * @param aWhereClause where-Clause
527    * @param anOrderByClause orderBy-Clause
528    * @param offset ab welchem Datensatz
529    * @param limit wieviele Datens?tze
530    * @return EntityList mit den gematchten Entities
531    * @exception StorageObjectException
532    */
533   public EntityList selectByWhereClause(String aWhereClause, String anOrderByClause,
534             int offset, int limit) throws StorageObjectFailure {
535
536     // check o_store for entitylist
537     if (StoreUtil.implementsStorableObject(theEntityClass)) {
538       StoreIdentifier search_sid =
539           new StoreIdentifier(
540             theEntityClass, StoreContainerType.STOC_TYPE_ENTITYLIST,
541             StoreUtil.getEntityListUniqueIdentifierFor(theTable, aWhereClause, anOrderByClause, offset, limit));
542       EntityList hit = (EntityList) o_store.use(search_sid);
543
544       if (hit != null) {
545         logger.debug("CACHE (hit): " + search_sid.toString());
546
547         return hit;
548       }
549     }
550
551     // local
552     EntityList theReturnList = null;
553     Connection con = null;
554     Statement stmt = null;
555     ResultSet rs;
556     int offsetCount = 0;
557     int count = 0;
558
559     // build sql-statement
560
561     /** @todo count sql string should only be assembled if we really count
562      *  see below at the end of method //rk */
563     if ((aWhereClause != null) && (aWhereClause.trim().length() == 0)) {
564       aWhereClause = null;
565     }
566
567     StringBuffer countSql =
568       new StringBuffer("select count(*) from ").append(theTable);
569     StringBuffer selectSql =
570       new StringBuffer("select * from ").append(theTable);
571
572     if (aWhereClause != null) {
573       selectSql.append(" where ").append(aWhereClause);
574       countSql.append(" where ").append(aWhereClause);
575     }
576
577     if ((anOrderByClause != null) && !(anOrderByClause.trim().length() == 0)) {
578       selectSql.append(" order by ").append(anOrderByClause);
579     }
580
581     if (theAdaptor.hasLimit()) {
582       if ((limit > -1) && (offset > -1)) {
583         selectSql.append(" LIMIT ").append(limit).append(" OFFSET ").append(offset);
584       }
585     }
586
587     // execute sql
588     try {
589       con = getPooledCon();
590       stmt = con.createStatement();
591
592       // selecting...
593       rs = executeSql(stmt, selectSql.toString());
594
595       if (rs != null) {
596         if (!evaluatedMetaData) {
597           evalMetaData(rs.getMetaData());
598         }
599
600         theReturnList = new EntityList();
601
602         Entity theResultEntity;
603
604         while (rs.next()) {
605           theResultEntity = makeEntityFromResultSet(rs);
606           theReturnList.add(theResultEntity);
607           offsetCount++;
608         }
609
610         rs.close();
611       }
612
613       // making entitylist infos
614       if (!(theAdaptor.hasLimit())) {
615         count = offsetCount;
616       }
617
618       if (theReturnList != null) {
619         // now we decide if we have to know an overall count...
620         count = offsetCount;
621
622         if ((limit > -1) && (offset > -1)) {
623           if (offsetCount == limit) {
624             /** @todo counting should be deffered to entitylist
625              *  getSize() should be used */
626             rs = executeSql(stmt, countSql.toString());
627
628             if (rs != null) {
629               if (rs.next()) {
630                 count = rs.getInt(1);
631               }
632
633               rs.close();
634             }
635             else {
636               logger.error("Could not count: " + countSql);
637             }
638           }
639         }
640
641         theReturnList.setCount(count);
642         theReturnList.setOffset(offset);
643         theReturnList.setWhere(aWhereClause);
644         theReturnList.setOrder(anOrderByClause);
645         theReturnList.setStorage(this);
646         theReturnList.setLimit(limit);
647
648         if (offset >= limit) {
649           theReturnList.setPrevBatch(offset - limit);
650         }
651
652         if ((offset + offsetCount) < count) {
653           theReturnList.setNextBatch(offset + limit);
654         }
655
656         if (StoreUtil.implementsStorableObject(theEntityClass)) {
657           StoreIdentifier sid = theReturnList.getStoreIdentifier();
658           logger.debug("CACHE (add): " + sid.toString());
659           o_store.add(sid);
660         }
661       }
662     }
663     catch (SQLException sqe) {
664       throwSQLException(sqe, "selectByWhereClause");
665     }
666     finally {
667       try {
668         if (con != null) {
669           freeConnection(con, stmt);
670         }
671       } catch (Throwable t) {
672       }
673     }
674
675     return theReturnList;
676   }
677
678   /**
679    *  Bastelt aus einer Zeile der Datenbank ein EntityObjekt.
680    *
681    *  @param rs Das ResultSetObjekt.
682    *  @return Entity Die Entity.
683    */
684   private Entity makeEntityFromResultSet(ResultSet rs)
685     throws StorageObjectFailure {
686     /** @todo OS: get Pkey from ResultSet and consult ObjectStore */
687     Map theResultHash = new HashMap();
688     String theResult = null;
689     int theType;
690     Entity returnEntity = null;
691
692     try {
693       int size = metadataFields.size();
694
695       for (int i = 0; i < size; i++) {
696         // alle durchlaufen bis nix mehr da
697         theType = metadataTypes[i];
698
699         if (theType == java.sql.Types.LONGVARBINARY) {
700           InputStreamReader is =
701             (InputStreamReader) rs.getCharacterStream(i + 1);
702
703           if (is != null) {
704             char[] data = new char[32768];
705             StringBuffer theResultString = new StringBuffer();
706             int len;
707
708             while ((len = is.read(data)) > 0) {
709               theResultString.append(data, 0, len);
710             }
711
712             is.close();
713             theResult = theResultString.toString();
714           } else {
715             theResult = null;
716           }
717         } else {
718           theResult = getValueAsString(rs, (i + 1), theType);
719         }
720
721         if (theResult != null) {
722           theResultHash.put(metadataFields.get(i), theResult);
723         }
724       }
725
726       if (theEntityClass != null) {
727         returnEntity = (Entity) theEntityClass.newInstance();
728         returnEntity.setValues(theResultHash);
729         returnEntity.setStorage(this);
730
731         if (returnEntity instanceof StorableObject) {
732           logger.debug("CACHE: ( in) " + returnEntity.getId() + " :" + theTable);
733           o_store.add(((StorableObject) returnEntity).getStoreIdentifier());
734         }
735       } else {
736         throwStorageObjectException("Internal Error: theEntityClass not set!");
737       }
738     }
739     catch (IllegalAccessException e) {
740       throwStorageObjectException("No access! -- " + e.getMessage());
741     }
742     catch (IOException e) {
743       throwStorageObjectException("IOException! -- " + e.getMessage());
744     }
745     catch (InstantiationException e) {
746       throwStorageObjectException("No Instatiation! -- " + e.getMessage());
747     }
748     catch (SQLException sqe) {
749       throwSQLException(sqe, "makeEntityFromResultSet");
750
751       return null;
752     }
753
754     return returnEntity;
755   }
756
757   /**
758    * Inserts an entity into the database.
759    *
760    * @param theEntity
761    * @return der Wert des Primary-keys der eingef?gten Entity
762    */
763   public String insert(Entity theEntity) throws StorageObjectFailure {
764     //cache
765     invalidatePopupCache();
766
767     // invalidating all EntityLists corresponding with theEntityClass
768     if (StoreUtil.implementsStorableObject(theEntityClass)) {
769       StoreContainerType stoc_type =
770         StoreContainerType.valueOf(theEntityClass,
771           StoreContainerType.STOC_TYPE_ENTITYLIST);
772       o_store.invalidate(stoc_type);
773     }
774
775     String returnId = null;
776     Connection con = null;
777     PreparedStatement pstmt = null;
778
779     try {
780       List streamedInput = theEntity.streamedInput();
781       StringBuffer f = new StringBuffer();
782       StringBuffer v = new StringBuffer();
783       String aField;
784       String aValue;
785       boolean firstField = true;
786
787       // make sql-string
788       for (int i = 0; i < getFields().size(); i++) {
789         aField = (String) getFields().get(i);
790
791         if (!aField.equals(thePKeyName)) {
792           aValue = null;
793
794           // exceptions
795           if (aField.equals("webdb_create") ||
796               aField.equals("webdb_lastchange")) {
797             aValue = "NOW()";
798           }
799           else {
800             if ((streamedInput != null) && streamedInput.contains(aField)) {
801               aValue = "?";
802             } else {
803               if (theEntity.hasValueForField(aField)) {
804                 aValue =
805                   "'" +
806                   JDBCStringRoutines.escapeStringLiteral((String) theEntity.getValue(
807                       aField)) + "'";
808               }
809             }
810           }
811
812           // wenn Wert gegeben, dann einbauen
813           if (aValue != null) {
814             if (firstField == false) {
815               f.append(",");
816               v.append(",");
817             }
818             else {
819               firstField = false;
820             }
821
822             f.append(aField);
823             v.append(aValue);
824           }
825         }
826       }
827        // end for
828
829       // insert into db
830       StringBuffer sqlBuf =
831         new StringBuffer("insert into ").append(theTable).append("(").append(f)
832                                         .append(") values (").append(v).append(")");
833       String sql = sqlBuf.toString();
834
835       logger.debug("INSERT: " + sql);
836       con = getPooledCon();
837       con.setAutoCommit(false);
838       pstmt = con.prepareStatement(sql);
839
840       if (streamedInput != null) {
841         for (int i = 0; i < streamedInput.size(); i++) {
842           String inputString =
843             (String) theEntity.getValue((String) streamedInput.get(i));
844           pstmt.setBytes(i + 1, inputString.getBytes());
845         }
846       }
847
848       int ret = pstmt.executeUpdate();
849
850       if (ret == 0) {
851         //insert failed
852         return null;
853       }
854
855       pstmt = con.prepareStatement(theAdaptor.getLastInsertSQL(this));
856
857       ResultSet rs = pstmt.executeQuery();
858       rs.next();
859       returnId = rs.getString(1);
860       theEntity.setId(returnId);
861     }
862     catch (SQLException sqe) {
863                         sqe.printStackTrace(logger.asPrintWriter(LoggerWrapper.DEBUG_MESSAGE));         
864       throwSQLException(sqe, "insert");
865     }
866     finally {
867       try {
868         con.setAutoCommit(true);
869       }
870       catch (Exception e) {
871                                 e.printStackTrace(logger.asPrintWriter(LoggerWrapper.DEBUG_MESSAGE));
872       }
873
874       freeConnection(con, pstmt);
875     }
876
877     /** @todo store entity in o_store */
878     return returnId;
879   }
880
881   /**
882    * Updates an entity in the database
883    *
884    * @param theEntity
885    */
886   public void update(Entity theEntity) throws StorageObjectFailure {
887     Connection con = null;
888     PreparedStatement pstmt = null;
889
890     /** @todo this is stupid: why do we prepare statement, when we
891      *  throw it away afterwards. should be regular statement
892      *  update/insert could better be one routine called save()
893      *  that chooses to either insert or update depending if we
894      *  have a primary key in the entity. i don't know if we
895      *  still need the streamed input fields. // rk  */
896     /** @todo extension: check if Entity did change, otherwise we don't need
897      *  the roundtrip to the database */
898     /** invalidating corresponding entitylists in o_store*/
899     if (StoreUtil.implementsStorableObject(theEntityClass)) {
900       StoreContainerType stoc_type =
901         StoreContainerType.valueOf(theEntityClass,
902           StoreContainerType.STOC_TYPE_ENTITYLIST);
903       o_store.invalidate(stoc_type);
904     }
905
906     List streamedInput = theEntity.streamedInput();
907     String id = theEntity.getId();
908     String aField;
909     StringBuffer fv = new StringBuffer();
910     boolean firstField = true;
911
912     //cache
913     invalidatePopupCache();
914
915     // build sql statement
916     for (int i = 0; i < getFields().size(); i++) {
917       aField = (String) metadataFields.get(i);
918
919       // only normal cases
920       if (  !(aField.equals(thePKeyName) ||
921             aField.equals("webdb_create") ||
922             aField.equals("webdb_lastchange") ||
923             ((streamedInput != null) && streamedInput.contains(aField)))) {
924         if (theEntity.hasValueForField(aField)) {
925           if (firstField == false) {
926             fv.append(", ");
927           }
928           else {
929             firstField = false;
930           }
931
932           fv.append(aField).append("='").append(JDBCStringRoutines.escapeStringLiteral((String) theEntity.getValue(aField))).append("'");
933
934           //              fv.append(aField).append("='").append(StringUtil.quote((String)theEntity.getValue(aField))).append("'");
935         }
936       }
937     }
938
939     StringBuffer sql =
940       new StringBuffer("update ").append(theTable).append(" set ").append(fv);
941
942     // exceptions
943     if (metadataFields.contains("webdb_lastchange")) {
944       sql.append(",webdb_lastchange=NOW()");
945     }
946
947     // special case: the webdb_create requires the field in yyyy-mm-dd HH:mm
948     // format so anything extra will be ignored. -mh
949     if (metadataFields.contains("webdb_create") &&
950         theEntity.hasValueForField("webdb_create")) {
951       // minimum of 10 (yyyy-mm-dd)...
952       if (theEntity.getValue("webdb_create").length() >= 10) {
953         String dateString = theEntity.getValue("webdb_create");
954
955         // if only 10, then add 00:00 so it doesn't throw a ParseException
956         if (dateString.length() == 10) {
957           dateString = dateString + " 00:00";
958         }
959
960         // TimeStamp stuff
961         try {
962           java.util.Date d = _dateFormatterIn.parse(dateString);
963           Timestamp tStamp = new Timestamp(d.getTime());
964           sql.append(",webdb_create='" + tStamp.toString() + "'");
965         } catch (ParseException e) {
966           throw new StorageObjectFailure(e);
967         }
968       }
969     }
970
971     if (streamedInput != null) {
972       for (int i = 0; i < streamedInput.size(); i++) {
973         sql.append(",").append(streamedInput.get(i)).append("=?");
974       }
975     }
976
977     sql.append(" where id=").append(id);
978     logger.debug("UPDATE: " + sql);
979
980     try {
981       con = getPooledCon();
982       con.setAutoCommit(false);
983       pstmt = con.prepareStatement(sql.toString());
984
985       if (streamedInput != null) {
986         for (int i = 0; i < streamedInput.size(); i++) {
987           String inputString =
988             theEntity.getValue((String) streamedInput.get(i));
989           pstmt.setBytes(i + 1, inputString.getBytes());
990         }
991       }
992
993       pstmt.executeUpdate();
994     }
995     catch (SQLException sqe) {
996       throwSQLException(sqe, "update");
997     }
998     finally {
999       try {
1000         con.setAutoCommit(true);
1001       }
1002       catch (Exception e) {
1003         ;
1004       }
1005
1006       freeConnection(con, pstmt);
1007     }
1008   }
1009
1010   /*
1011   *   delete-Operator
1012   *   @param id des zu loeschenden Datensatzes
1013   *   @return boolean liefert true zurueck, wenn loeschen erfolgreich war.
1014    */
1015   public boolean delete(String id) throws StorageObjectFailure {
1016     invalidatePopupCache();
1017
1018     // ostore send notification
1019     if (StoreUtil.implementsStorableObject(theEntityClass)) {
1020       String uniqueId = id;
1021
1022       if (theEntityClass.equals(StorableObjectEntity.class)) {
1023         uniqueId += ("@" + theTable);
1024       }
1025
1026       logger.debug("CACHE: (del) " + id);
1027
1028       StoreIdentifier search_sid =
1029         new StoreIdentifier(theEntityClass,
1030           StoreContainerType.STOC_TYPE_ENTITY, uniqueId);
1031       o_store.invalidate(search_sid);
1032     }
1033
1034     /** @todo could be prepared Statement */
1035     Statement stmt = null;
1036     Connection con = null;
1037     int res = 0;
1038     String sql =
1039       "delete from " + theTable + " where " + thePKeyName + "='" + id + "'";
1040
1041     //theLog.printInfo("DELETE " + sql);
1042     try {
1043       con = getPooledCon();
1044       stmt = con.createStatement();
1045       res = stmt.executeUpdate(sql);
1046     } catch (SQLException sqe) {
1047       throwSQLException(sqe, "delete");
1048     } finally {
1049       freeConnection(con, stmt);
1050     }
1051
1052     return (res > 0) ? true : false;
1053   }
1054
1055   /* noch nicht implementiert.
1056   * @return immer false
1057    */
1058   public boolean delete(EntityList theEntityList) {
1059     invalidatePopupCache();
1060
1061     return false;
1062   }
1063
1064   /**
1065    * Diese Methode sollte ueberschrieben werden, wenn fuer die abgeleitete Database-Klasse
1066    * eine SimpleList mit Standard-Popupdaten erzeugt werden koennen soll.
1067    * @return null
1068    */
1069   public SimpleList getPopupData() throws StorageObjectFailure {
1070     return null;
1071   }
1072
1073   /**
1074    *  Holt Daten fuer Popups.
1075    *  @param name  Name des Feldes.
1076    *  @param hasNullValue  Wenn true wird eine leerer  Eintrag fuer die Popups erzeugt.
1077    *  @return SimpleList Gibt freemarker.template.SimpleList zurueck.
1078    */
1079   public SimpleList getPopupData(String name, boolean hasNullValue)
1080     throws StorageObjectFailure {
1081     return getPopupData(name, hasNullValue, null);
1082   }
1083
1084   /**
1085    *  Holt Daten fuer Popups.
1086    *  @param name  Name des Feldes.
1087    *  @param hasNullValue  Wenn true wird eine leerer  Eintrag fuer die Popups erzeugt.
1088    *  @param where  Schraenkt die Selektion der Datensaetze ein.
1089    *  @return SimpleList Gibt freemarker.template.SimpleList zurueck.
1090    */
1091   public SimpleList getPopupData(String name, boolean hasNullValue, String where)
1092     throws StorageObjectFailure {
1093     return getPopupData(name, hasNullValue, where, null);
1094   }
1095
1096   /**
1097    *  Holt Daten fuer Popups.
1098    *  @param name  Name des Feldes.
1099    *  @param hasNullValue  Wenn true wird eine leerer  Eintrag fuer die Popups erzeugt.
1100    *  @param where  Schraenkt die Selektion der Datensaetze ein.
1101    *  @param order  Gibt ein Feld als Sortierkriterium an.
1102    *  @return SimpleList Gibt freemarker.template.SimpleList zurueck.
1103    */
1104   public SimpleList getPopupData(String name, boolean hasNullValue,
1105     String where, String order) throws StorageObjectFailure {
1106     // caching
1107     if (hasPopupCache && (popupCache != null)) {
1108       return popupCache;
1109     }
1110
1111     SimpleList simpleList = null;
1112     Connection con = null;
1113     Statement stmt = null;
1114
1115     // build sql
1116     StringBuffer sql =
1117       new StringBuffer("select ").append(thePKeyName).append(",").append(name)
1118                                  .append(" from ").append(theTable);
1119
1120     if ((where != null) && !(where.length() == 0)) {
1121       sql.append(" where ").append(where);
1122     }
1123
1124     sql.append(" order by ");
1125
1126     if ((order != null) && !(order.length() == 0)) {
1127       sql.append(order);
1128     } else {
1129       sql.append(name);
1130     }
1131
1132     // execute sql
1133     try {
1134       con = getPooledCon();
1135     } catch (Exception e) {
1136       throw new StorageObjectFailure(e);
1137     }
1138
1139     try {
1140       stmt = con.createStatement();
1141
1142       ResultSet rs = executeSql(stmt, sql.toString());
1143
1144       if (rs != null) {
1145         if (!evaluatedMetaData) {
1146           get_meta_data();
1147         }
1148
1149         simpleList = new SimpleList();
1150
1151         // if popup has null-selector
1152         if (hasNullValue) {
1153           simpleList.add(POPUP_EMPTYLINE);
1154         }
1155
1156         SimpleHash popupDict;
1157
1158         while (rs.next()) {
1159           popupDict = new SimpleHash();
1160           popupDict.put("key", getValueAsString(rs, 1, thePKeyType));
1161           popupDict.put("value", rs.getString(2));
1162           simpleList.add(popupDict);
1163         }
1164
1165         rs.close();
1166       }
1167     }
1168     catch (Exception e) {
1169       logger.error("getPopupData: " + e.getMessage());
1170       throw new StorageObjectFailure(e);
1171     } finally {
1172       freeConnection(con, stmt);
1173     }
1174
1175     if (hasPopupCache) {
1176       popupCache = simpleList;
1177     }
1178
1179     return simpleList;
1180   }
1181
1182   /**
1183    * Liefert alle Daten der Tabelle als SimpleHash zurueck. Dies wird verwandt,
1184    * wenn in den Templates ein Lookup-Table benoetigt wird. Sollte nur bei kleinen
1185    * Tabellen Verwendung finden.
1186    * @return SimpleHash mit den Tabellezeilen.
1187    */
1188   public SimpleHash getHashData() {
1189     /** @todo dangerous! this should have a flag to be enabled, otherwise
1190      *  very big Hashes could be returned */
1191     if (hashCache == null) {
1192       try {
1193         hashCache =
1194           HTMLTemplateProcessor.makeSimpleHash(selectByWhereClause("", -1));
1195       }
1196       catch (StorageObjectFailure e) {
1197         logger.debug(e.getMessage());
1198       }
1199     }
1200
1201     return hashCache;
1202   }
1203
1204   /* invalidates the popupCache
1205    */
1206   protected void invalidatePopupCache() {
1207     /** @todo  invalidates toooo much */
1208     popupCache = null;
1209     hashCache = null;
1210   }
1211
1212   /**
1213    * Diese Methode fuehrt den Sqlstring <i>sql</i> aus und timed im Logfile.
1214    * @param stmt Statemnt
1215    * @param sql Sql-String
1216    * @return ResultSet
1217    * @exception StorageObjectException
1218    */
1219   public ResultSet executeSql(Statement stmt, String sql)
1220                             throws StorageObjectFailure, SQLException {
1221     ResultSet rs;
1222     long startTime = System.currentTimeMillis();
1223
1224     try {
1225       rs = stmt.executeQuery(sql);
1226
1227       logger.debug((System.currentTimeMillis() - startTime) + "ms. for: " + sql);
1228     }
1229     catch (SQLException e) {
1230       logger.error(e.getMessage() +"\n" + (System.currentTimeMillis() - startTime) + "ms. for: " + sql);
1231       throw e;
1232     }
1233
1234     return rs;
1235   }
1236 /*
1237   public ResultSet executeSql(String sql) throws StorageObjectFailure, SQLException {
1238     long startTime = System.currentTimeMillis();
1239     Connection connection = null;
1240     Statement statement = null;
1241
1242     try {
1243       connection = getPooledCon();
1244       statement = connection.createStatement();
1245       ResultSet result;
1246
1247       result = statement.executeQuery(sql);
1248
1249       logger.debug((System.currentTimeMillis() - startTime) + "ms. for: " + sql);
1250       return result;
1251     }
1252     catch (Throwable e) {
1253       logger.error(e.getMessage() +"\n" + (System.currentTimeMillis() - startTime) + "ms. for: " + sql);
1254       throw new StorageObjectFailure(e);
1255     }
1256     finally {
1257       if (connection!=null) {
1258         freeConnection(connection, statement);
1259       }
1260     }
1261   }
1262 */
1263   private Map processRow(ResultSet aResultSet) throws StorageObjectFailure, StorageObjectExc {
1264     try {
1265       Map result = new HashMap();
1266       ResultSetMetaData metaData = aResultSet.getMetaData();
1267       int nrColumns = metaData.getColumnCount();
1268       for (int i=0; i<nrColumns; i++) {
1269         result.put(metaData.getColumnName(i+1), getValueAsString(aResultSet, i+1, metaData.getColumnType(i+1)));
1270       }
1271
1272       return result;
1273     }
1274     catch (Throwable e) {
1275       throw new StorageObjectFailure(e);
1276     }
1277   }
1278
1279   public List executeFreeSql(String sql, int aLimit) throws StorageObjectFailure, StorageObjectExc {
1280     Connection connection = null;
1281     Statement statement = null;
1282     try {
1283       List result = new Vector();
1284       connection = getPooledCon();
1285       statement = connection.createStatement();
1286       ResultSet resultset = executeSql(statement, sql);
1287       try {
1288         while (resultset.next() && result.size() < aLimit) {
1289           result.add(processRow(resultset));
1290         }
1291       }
1292       finally {
1293         resultset.close();
1294       }
1295
1296       return result;
1297     }
1298     catch (Throwable e) {
1299       throw new StorageObjectFailure(e);
1300     }
1301     finally {
1302       if (connection!=null) {
1303         freeConnection(connection, statement);
1304       }
1305     }
1306   };
1307
1308   public Map executeFreeSingleRowSql(String anSqlStatement) throws StorageObjectFailure, StorageObjectExc {
1309     try {
1310       List resultList = executeFreeSql(anSqlStatement, 1);
1311       try {
1312         if (resultList.size()>0)
1313           return (Map) resultList.get(0);
1314         else
1315           return null;
1316       }
1317       finally {
1318       }
1319     }
1320     catch (Throwable t) {
1321       throw new StorageObjectFailure(t);
1322     }
1323   };
1324
1325   public String executeFreeSingleValueSql(String sql) throws StorageObjectFailure, StorageObjectExc {
1326     Map row = executeFreeSingleRowSql(sql);
1327
1328     if (row==null)
1329       return null;
1330
1331     Iterator i = row.values().iterator();
1332     if (i.hasNext())
1333       return (String) i.next();
1334     else
1335       return null;
1336   };
1337
1338   /**
1339    * returns the number of rows in the table
1340    */
1341   public int getSize(String where) throws SQLException, StorageObjectFailure {
1342     long startTime = System.currentTimeMillis();
1343     String sql = "SELECT Count(*) FROM " + theTable;
1344
1345     if ((where != null) && (where.length() != 0)) {
1346       sql = sql + " where " + where;
1347     }
1348
1349     Connection con = null;
1350     Statement stmt = null;
1351     int result = 0;
1352
1353     try {
1354       con = getPooledCon();
1355       stmt = con.createStatement();
1356
1357       ResultSet rs = executeSql(stmt, sql);
1358
1359       while (rs.next()) {
1360         result = rs.getInt(1);
1361       }
1362     }
1363     catch (SQLException e) {
1364       logger.error("Database.getSize: " + e.getMessage());
1365     }
1366     finally {
1367       freeConnection(con, stmt);
1368     }
1369
1370     //theLog.printInfo(theTable + " has "+ result +" rows where " + where);
1371     logger.debug((System.currentTimeMillis() - startTime) + "ms. for: " + sql);
1372
1373     return result;
1374   }
1375
1376   public int executeUpdate(Statement stmt, String sql)
1377     throws StorageObjectFailure, SQLException {
1378     int rs;
1379     long startTime = System.currentTimeMillis();
1380
1381     try {
1382       rs = stmt.executeUpdate(sql);
1383
1384       logger.debug((System.currentTimeMillis() - startTime) + "ms. for: " + sql);
1385     }
1386     catch (SQLException e) {
1387       logger.error("Failed: " + (System.currentTimeMillis() - startTime) + "ms. for: " + sql);
1388       throw e;
1389     }
1390
1391     return rs;
1392   }
1393
1394   public int executeUpdate(String sql)
1395     throws StorageObjectFailure, SQLException {
1396     int result = -1;
1397     long startTime = System.currentTimeMillis();
1398     Connection con = null;
1399     PreparedStatement pstmt = null;
1400
1401     try {
1402       con = getPooledCon();
1403       pstmt = con.prepareStatement(sql);
1404       result = pstmt.executeUpdate();
1405     }
1406     catch (Throwable e) {
1407       logger.error("Database.executeUpdate(" + sql + "): " + e.getMessage());
1408       throw new StorageObjectFailure("Database.executeUpdate(" + sql + "): " + e.getMessage(), e);
1409     }
1410     finally {
1411       freeConnection(con, pstmt);
1412     }
1413
1414     logger.debug((System.currentTimeMillis() - startTime) + "ms. for: " + sql);
1415     return result;
1416   }
1417
1418   /**
1419    * Wertet ResultSetMetaData aus und setzt interne Daten entsprechend
1420    * @param md ResultSetMetaData
1421    * @exception StorageObjectException
1422    */
1423   private void evalMetaData(ResultSetMetaData md) throws StorageObjectFailure {
1424     this.evaluatedMetaData = true;
1425     this.metadataFields = new ArrayList();
1426     this.metadataLabels = new ArrayList();
1427     this.metadataNotNullFields = new ArrayList();
1428
1429     try {
1430       int numFields = md.getColumnCount();
1431       this.metadataTypes = new int[numFields];
1432
1433       String aField;
1434       int aType;
1435
1436       for (int i = 1; i <= numFields; i++) {
1437         aField = md.getColumnName(i);
1438         metadataFields.add(aField);
1439         metadataLabels.add(md.getColumnLabel(i));
1440         aType = md.getColumnType(i);
1441         metadataTypes[i - 1] = aType;
1442
1443         if (aField.equals(thePKeyName)) {
1444           thePKeyType = aType;
1445           thePKeyIndex = i;
1446         }
1447
1448         if (md.isNullable(i) == ResultSetMetaData.columnNullable) {
1449           metadataNotNullFields.add(aField);
1450         }
1451       }
1452     }
1453     catch (SQLException e) {
1454       throwSQLException(e, "evalMetaData");
1455     }
1456   }
1457
1458   /**
1459    *  Wertet die Metadaten eines Resultsets fuer eine Tabelle aus,
1460    *  um die alle Columns und Typen einer Tabelle zu ermitteln.
1461    */
1462   private void get_meta_data() throws StorageObjectFailure {
1463     Connection con = null;
1464     PreparedStatement pstmt = null;
1465     String sql = "select * from " + theTable + " where 0=1";
1466
1467     try {
1468       con = getPooledCon();
1469       pstmt = con.prepareStatement(sql);
1470
1471       logger.debug("METADATA: " + sql);
1472       ResultSet rs = pstmt.executeQuery();
1473       evalMetaData(rs.getMetaData());
1474       rs.close();
1475     }
1476     catch (SQLException e) {
1477       throwSQLException(e, "get_meta_data");
1478     }
1479     finally {
1480       freeConnection(con, pstmt);
1481     }
1482   }
1483
1484   public Connection getPooledCon() throws StorageObjectFailure {
1485     Connection con = null;
1486
1487     try {
1488       con = SQLManager.getInstance().requestConnection();
1489     }
1490     catch (SQLException e) {
1491       logger.error("could not connect to the database " + e.getMessage());
1492
1493       throw new StorageObjectFailure("Could not connect to the database", e);
1494     }
1495
1496     return con;
1497   }
1498
1499   public void freeConnection(Connection con, Statement stmt)
1500     throws StorageObjectFailure {
1501     SQLManager.closeStatement(stmt);
1502     SQLManager.getInstance().returnConnection(con);
1503   }
1504
1505   /**
1506    * Wertet SQLException aus und wirft dannach eine StorageObjectException
1507    * @param sqe SQLException
1508    * @param wo Funktonsname, in der die SQLException geworfen wurde
1509    * @exception StorageObjectException
1510    */
1511   protected void throwSQLException(SQLException sqe, String aFunction) throws StorageObjectFailure {
1512     String state = "";
1513     String message = "";
1514     int vendor = 0;
1515
1516     if (sqe != null) {
1517       state = sqe.getSQLState();
1518       message = sqe.getMessage();
1519       vendor = sqe.getErrorCode();
1520     }
1521
1522     String information =
1523         "SQL Error: " +
1524         "state= " + state +
1525         ", vendor= " + vendor +
1526         ", message=" + message +
1527         ", function= " + aFunction;
1528
1529     logger.error(information);
1530
1531     throw new StorageObjectFailure(information, sqe);
1532   }
1533
1534   protected void _throwStorageObjectException(Exception e, String aFunction)
1535     throws StorageObjectFailure {
1536
1537     if (e != null) {
1538       logger.error(e.getMessage() + aFunction);
1539       throw new StorageObjectFailure(aFunction, e);
1540     }
1541   }
1542
1543   /**
1544    * Loggt Fehlermeldung mit dem Parameter Message und wirft dannach
1545    * eine StorageObjectException
1546    * @param message Nachricht mit dem Fehler
1547    * @exception StorageObjectException
1548    */
1549   void throwStorageObjectException(String aMessage) throws StorageObjectFailure {
1550     logger.error(aMessage);
1551     throw new StorageObjectFailure(aMessage, null);
1552   }
1553 }