01: /*
02: * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/webman/mainint/db/queries/Attic/TKDBSiteTreeGetAll.java,v 1.5 2000/05/22 15:01:50 careck Exp $
03: *
04: */
05: package com.teamkonzept.webman.mainint.db.queries;
06:
07: import java.sql.*;
08:
09: 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: public final static boolean isPrepared = true;
22:
23: public final static String[] paramOrder = null;
24:
25: public final static Object[][] paramTypes = null;
26:
27: public final static boolean[] setRelevants = { true };
28:
29: public final static String sqlString = "SELECT " + " * " + "FROM "
30: + " SITE_TREE " + "ORDER BY " + " LEFT_NR ";
31:
32: public void initQuery(Connection con) {
33: super.initQuery(con, isPrepared, paramOrder, paramTypes,
34: setRelevants, sqlString);
35: }
36: }
|