KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > publishing > markups > db > queries > TKMarkupPropGet


1 /*
2  * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/publishing/markups/db/queries/TKMarkupPropGet.java,v 1.7 2001/11/06 16:18:36 markus Exp $
3  *
4  */

5 package com.teamkonzept.publishing.markups.db.queries;
6
7 import java.sql.*;
8
9 import com.teamkonzept.db.*;
10
11 /**
12  * @author
13  * @version
14  */

15 public class TKMarkupPropGet extends TKPrepQuery {
16
17     public final static boolean ISPREPARED = true;
18     public final static String JavaDoc[] PARAMORDER = null;
19     public final static Object JavaDoc[][] PARAMTYPES = null;
20         
21     public final static boolean[] SETRELEVANTS = { true };
22         
23     public final static String JavaDoc SQLSTRING =
24         "SELECT * FROM PROPERTY";
25
26     public void initQuery(Connection con) {
27         super.initQuery(con,ISPREPARED,PARAMORDER,PARAMTYPES,SETRELEVANTS,SQLSTRING );
28     }
29 }
30
31
Popular Tags