KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > queries > version > DropTempTableContentVersion


1 package com.teamkonzept.webman.mainint.db.queries.version;
2
3 import java.sql.Connection JavaDoc;
4 import com.teamkonzept.db.*;
5
6 public class DropTempTableContentVersion extends TKPrepQuery
7 {
8
9     public final static boolean PREPARED = true;
10     public final static String JavaDoc[] ORDER = null;
11     public final static Object JavaDoc[][] TYPES = null;
12     public final static boolean[] RELEVANTS = { true };
13     public final static String JavaDoc SQLSTRING = "DROP TABLE WEBMAN_TEMP_CONTENT_VERSION";
14
15     public void initQuery(Connection JavaDoc con) {
16         super.initQuery(
17             con,
18             PREPARED,
19             ORDER,
20             TYPES,
21             RELEVANTS,
22             SQLSTRING );
23     }
24
25 }
26
Popular Tags