KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.teamkonzept.webman.mainint.db.queries.duplication.oracle;
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 /**
13     @author Marwan
14  */

15 public class SelectDuplicationResultsSimple extends TKPrepQuery implements QueryConstants{
16
17     
18     public final static boolean isPrepared =
19         true;
20     
21     public final static String JavaDoc[] paramOrder =
22         null
23         ;
24
25     public final static Object JavaDoc[][] paramTypes =
26         null;
27                 
28     public final static boolean[] setRelevants =
29         null;
30         
31     public final static String JavaDoc sqlString =
32
33         /* "{ ? = call duplication.select_results() }"; */
34         
35         " SELECT OLD_ID FROM ST_TRANSLATE "
36                  ;
37         
38     public void initQuery(Connection con) {
39         super.initQuery(
40             con,
41             isPrepared,
42             paramOrder,
43             paramTypes,
44             setRelevants,
45             sqlString );
46             
47     }
48 }
49
50
Popular Tags