1 package de.webman.acl.db.queries; 2 3 import java.sql.Connection ; 4 import java.sql.Types ; 5 import com.teamkonzept.db.TKPrepQuery; 6 7 14 public class PolicySelectAll 15 extends TKPrepQuery 16 { 17 18 20 public static final boolean[] RELEVANTS = {true}; 21 22 public static final String SQL = "SELECT WM_POLICY_ID FROM WM_POLICY"; 23 24 25 27 public void initQuery (Connection connection) 28 { 29 super.initQuery(connection, 30 true, 31 null, 32 null, 33 RELEVANTS, 34 SQL); 35 } 36 37 } 38 | Popular Tags |