KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/webman/mainint/db/queries/oracle/Attic/TKDBSiteTreeGetAll.java,v 1.4 2001/09/04 09:01:35 ralf Exp $
3  *
4  */

5 package com.teamkonzept.webman.mainint.db.queries.oracle;
6
7 import java.sql.*;
8
9 import com.teamkonzept.db.*;
10
11 /*
12  * TKDBSiteTreeGetAll
13  * Holt alle Knoten aus dem SITE_TREE
14  *
15  * Input: Keiner
16  * Output: alle DS aus Sitetree
17  *
18  */

19 public class TKDBSiteTreeGetAll extends TKPrepQuery
20 {
21
22     public final static boolean IS_PREPARED = true;
23
24     public final static String JavaDoc[] PARAM_ORDER = null;
25
26     public final static Object JavaDoc[][] PARAM_TYPES = null;
27
28     public final static boolean[] SET_RELEVANTS = { true };
29
30     public final static String JavaDoc SQL_STRING =
31     "SELECT " +
32     " * " + "FROM " + " SITE_TREE " + "ORDER BY " + " LEFT_NR ";
33
34
35     public void initQuery(Connection con)
36     {
37     super.initQuery(con,
38             IS_PREPARED,
39             PARAM_ORDER, PARAM_TYPES, SET_RELEVANTS, SQL_STRING);
40     }
41 }
42
Popular Tags