1 5 package com.teamkonzept.publishing.markups.db.queries; 6 7 import java.sql.*; 8 9 import com.teamkonzept.db.*; 10 11 15 public class TKMarkupPropGet extends TKPrepQuery { 16 17 public final static boolean ISPREPARED = true; 18 public final static String [] PARAMORDER = null; 19 public final static Object [][] PARAMTYPES = null; 20 21 public final static boolean[] SETRELEVANTS = { true }; 22 23 public final static String 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 |