KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/webman/mainint/db/queries/sitetree/postgresql/Attic/DrUpdateRelRefs.java,v 1.2 2001/11/30 18:03:27 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  *
13  * @author
14  * @version
15  */

16 public class DrUpdateRelRefs extends TKPrepQuery{
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             NEW_ID,
24             NEW_IDX
25          };
26     
27     public final static Object JavaDoc[][] PARAMTYPES = null;
28     public final static boolean[] SETRELEVANTS = null;
29         
30     public final static String JavaDoc SQLSTRING =
31         "SELECT update_rel_refs(?,?,?,?)";
32
33     public void initQuery(Connection con) {
34         super.initQuery(
35             con,
36             ISPREPARED,
37             PARAMORDER,
38             PARAMTYPES,
39             SETRELEVANTS,
40             SQLSTRING);
41     }
42 }
43
Popular Tags