KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > queries > sitetree > ContSelDelete


1 /*
2  * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/webman/mainint/db/queries/sitetree/Attic/ContSelDelete.java,v 1.2 2000/12/13 11:29:31 marwan Exp $
3  *
4  */

5 package com.teamkonzept.webman.mainint.db.queries.sitetree;
6 //package com.teamkonzept.db.atomic.sitetree;
7

8 import java.sql.*;
9
10 import com.teamkonzept.db.*;
11
12
13 public class ContSelDelete extends TKPrepQuery {
14     public final static boolean isPrepared =
15         true;
16     
17     public final static String JavaDoc[] paramOrder =
18         {
19             SELECTION_ID,
20         };
21     
22     public final static Object JavaDoc[][] paramTypes =
23         null;
24     
25     public final static boolean[] setRelevants =
26         null;
27         
28     public final static String JavaDoc sqlString =
29         
30             " delete from CONTENT_SELECTION " +
31             " where SELECTION_ID = ? "
32             ;
33     
34     public void initQuery(Connection con) {
35         super.initQuery(
36             con,
37             isPrepared,
38             paramOrder,
39             paramTypes,
40             setRelevants,
41             sqlString );
42     }
43 }
44
45
46
Popular Tags