KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > queries > presentation > DeleteFromPresentationComponentSimple


1 package com.teamkonzept.webman.mainint.db.queries.presentation;
2
3 import java.sql.Connection JavaDoc;
4 import com.teamkonzept.db.*;
5
6 public class DeleteFromPresentationComponentSimple extends TKPrepQuery
7 {
8
9     public final static boolean prepared = true;
10
11     public final static String JavaDoc[] order =
12         {"PRESENTATION_ID" };
13
14     public final static Object JavaDoc[][] types = null;
15
16     public final static boolean[] relevants = { true };
17
18     public final static String JavaDoc sqlString = "DELETE FROM PRESENTATION_COMPONENT WHERE PRESENTATION_ID = ?";
19
20     public void initQuery(Connection JavaDoc con) {
21         super.initQuery(
22             con,
23             prepared,
24             order,
25             types,
26             relevants,
27             sqlString );
28     }
29
30 }
Popular Tags