KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > queries > duplication > postgresql > SelectDuplicationResultsSimple


1 package com.teamkonzept.webman.mainint.db.queries.duplication.postgresql;
2
3 import com.teamkonzept.db.*;
4 import com.teamkonzept.webman.mainint.DatabaseDefaults;
5
6 import java.io.*;
7 import java.util.*;
8 import java.sql.*;
9
10 import oracle.jdbc.driver.*;
11
12 public class SelectDuplicationResultsSimple extends TKPrepQuery implements QueryConstants{
13
14     
15     public final static boolean IS_PREPARED =
16         true;
17     
18     public final static String JavaDoc[] PARAM_ORDER =
19         null
20         ;
21
22     public final static Object JavaDoc[][] PARAM_TYPES =
23         null;
24                 
25     public final static boolean[] SET_RELEVANTS =
26         null;
27         
28     public final static String JavaDoc SQL_STRING =
29
30         /* "{ ? = call duplication.select_results() }"; */
31         
32         " SELECT OLD_ID FROM ST_TRANSLATE "
33                  ;
34         
35     public void initQuery(Connection con) {
36         super.initQuery(
37             con,
38             IS_PREPARED,
39             PARAM_ORDER,
40             PARAM_TYPES,
41             SET_RELEVANTS,
42             SQL_STRING );
43             
44     }
45 }
46
47
Popular Tags