package com.teamkonzept.webman.mainint.db.queries.presentation;
import java.sql.Connection;
import com.teamkonzept.db.*;
public class DeleteFromPresentationComponent extends TKPrepQuery
{
public final static boolean prepared = true;
public final static String[] order = { "PRESENTATION_ID", "PRESENTATION_COMPONENT_IDX" };
public final static Object[][] types = null;
public final static boolean[] relevants = { true };
public final static String sqlString = (new StringBuffer("DELETE FROM PRESENTATION_COMPONENT ")
.append("WHERE ")
.append("PRESENTATION_ID = ? AND PRESENTATION_COMPONENT_IDX = ?")).toString();
public void initQuery(Connection con) {
super.initQuery(
con,
prepared,
order,
types,
relevants,
sqlString );
}
}
|