1 package com.teamkonzept.webman.mainint.db.queries.duplication.postgresql; 2 3 import com.teamkonzept.db.*; 4 6 import java.io.*; 7 import java.util.*; 8 import java.sql.*; 9 10 11 12 20 public class TKDBSiteNodeNameExtend extends TKPrepQuery{ 21 22 23 public final static boolean IS_PREPARED = 24 true; 25 26 public final static String [] PARAM_ORDER = 27 { "NAME_EXT", "POS" , "SITE_NODE_ID" }; 28 29 public final static Object [][] PARAM_TYPES = 30 {{ "NAME_EXT ", new Integer (Types.VARCHAR) }}; 31 32 public final static boolean[] SET_RELEVANTS = 33 null; 34 35 public final static String SQL_STRING = 36 " select dup__site_node_name_extend(?, ? , ?) "; 37 38 public void initQuery(Connection con) { 39 super.initQuery( 40 con, 41 IS_PREPARED, 42 PARAM_ORDER, 43 PARAM_TYPES, 44 SET_RELEVANTS, 45 SQL_STRING ); 46 } 47 } 48 49 50 | Popular Tags |