KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > queries > TKDBContentTreeDeleteDependentDC


1 package com.teamkonzept.webman.mainint.db.queries;
2
3 import com.teamkonzept.db.*;
4 import java.sql.*;
5 import com.teamkonzept.webman.mainint.WebmanExceptionHandler;
6
7 /*
8  * TKDBContentTreeDeleteDependentDC
9  * loescht alle Eintraeg in DC die abhaengkeiten in CONTENT_TREE haben
10  * Input: CONTENT_NODE_ID
11  * Output: none
12  *
13  * @author
14  * @version
15  */

16 public class TKDBContentTreeDeleteDependentDC extends TKPrepQuery
17 {
18
19     public final static boolean IS_PREPARED = false;
20     public final static String JavaDoc[] ORDER = null;
21     public final static Object JavaDoc[][] TYPES = null;
22     public final static boolean[] SET_RELEVANTS = null;
23
24     public boolean execute()
25     {
26         throw new RuntimeException JavaDoc("datenbank-spezifische Query im jeweiligen Sub-Package fehlt!");
27     }
28
29     public void initQuery(Connection con)
30     {
31         super.initQuery(con, IS_PREPARED, ORDER, TYPES, SET_RELEVANTS, null);
32     }
33 }
34
Popular Tags