1 package com.teamkonzept.webman.mainint.db.queries.content; 2 3 import java.sql.Connection ; 4 import com.teamkonzept.db.*; 5 6 public class InsertTempTableContentNodeId extends TKPrepQuery 7 { 8 9 public static boolean prepared = true; 10 public static String [] order = {"NODE_ID"}; 11 public static Object [][] types = null; 12 public static boolean[] relevants = { true }; 13 public static String sqlString = "INSERT INTO WEBMAN_TEMP (CONTENT_NODE_ID) VALUES (?)"; 14 15 public void initQuery(Connection con) { 16 super.initQuery( 17 con, 18 prepared, 19 order, 20 types, 21 relevants, 22 sqlString ); 23 } 24 25 } 26 | Popular Tags |