GenRefTypes.java :  » Content-Management-System » webman » de » webman » generator » db » queries » Java Open Source

Java Open Source » Content Management System » webman 
webman » de » webman » generator » db » queries » GenRefTypes.java
package de.webman.generator.db.queries;

import com.teamkonzept.db.*;
import java.sql.*;

/*
 * DBGenRefTypes
 * Holt alle Typen aller Referenzen aller Praesentationen
 *
 * Input: Keiner
 * Output: alle Typen aller Referenzen aller Praesentationen
 * @author  $Author: alex $
 * @version $Revision: 1.1 $
 */
public class GenRefTypes extends TKPrepQuery {

  public static boolean isPrepared =
    true;
  
  public static String[] paramOrder =
    null;
  
  public static Object[][] paramTypes =
    null;
    
  public static boolean[] setRelevants =
    { true };
    
  public static String sqlString =
    "SELECT " +
    " * " +
    "FROM " +
    " PRESENTATION_REFERENCE " +
    "ORDER BY " +
    " PRESENTATION_ID, PRESENTATION_COMPONENT_IDX";

  
  public void initQuery(Connection con) {
    super.initQuery(
      con, 
      isPrepared, 
      paramOrder, 
      paramTypes,
      setRelevants,
      sqlString ); 
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.