KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > queries > sitetree > postgresql > DcCsCloneOnSd


1 /*
2  * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/webman/mainint/db/queries/sitetree/postgresql/Attic/DcCsCloneOnSd.java,v 1.2 2001/11/30 17:27:56 markus Exp $
3  *
4  */

5 package com.teamkonzept.webman.mainint.db.queries.sitetree.postgresql;
6
7 import java.sql.*;
8
9 import com.teamkonzept.db.*;
10
11 /**
12  * @author
13  * @version
14  */

15 public class DcCsCloneOnSd extends TKPrepQuery
16 {
17
18     public final static boolean ISPREPARED = true;
19     public final static String JavaDoc[] PARAMORDER =
20         {
21             NODE_ID,
22             SITE_NODE_DOC_IDX,
23             SITE_NODE_ID,
24             SITE_NODE_DOC_IDX
25 // wird nie gesetzt???
26
// NEW_ID,
27
// NEW_IDX
28
};
29     
30     public final static Object JavaDoc[][] PARAMTYPES = null;
31     public final static boolean[] SETRELEVANTS = null;
32
33     public final static String JavaDoc SQLSTRING =
34         "SELECT dc_cs_clone_on_sd(?,?,?,?)";
35         
36         
37     public void initQuery(Connection con)
38     {
39         super.initQuery(
40             con,
41             ISPREPARED,
42             PARAMORDER,
43             PARAMTYPES,
44             SETRELEVANTS,
45             SQLSTRING );
46     }
47 }
48
Popular Tags