KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > queries > TKDBPresentationGet


1 /*
2  * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/webman/mainint/db/queries/Attic/TKDBPresentationGet.java,v 1.7 2002/02/01 18:08:22 sebastian Exp $
3  *
4  */

5 package com.teamkonzept.webman.mainint.db.queries;
6
7 import java.sql.*;
8
9 import com.teamkonzept.db.*;
10
11 /**
12  * TKDBPresentationGet
13  * input none
14  * ouput alle DS
15  * @author
16  * @version
17  */

18 public class TKDBPresentationGet extends TKPrepQuery{
19
20     public static boolean isPrepared =
21         true;
22     
23     public static String JavaDoc[] paramOrder =
24         null;
25     
26     public static Object JavaDoc[][] paramTypes =
27         null;
28         
29     public static boolean[] setRelevants =
30         { true, true };
31         
32     /** Das sql-stm. */
33     public static String JavaDoc sqlString =
34         "SELECT " +
35         " * " +
36         "FROM " +
37         " PRESENTATION " +
38         " ORDER BY " + DBStringFactory.upper_order() + "(PRESENTATION_NAME) ";
39
40     public void initQuery(Connection con) {
41         super.initQuery(
42             con,
43             isPrepared,
44             paramOrder,
45             paramTypes,
46             setRelevants,
47             sqlString );
48     }
49 }
50
51
Popular Tags