1 17 package org.apache.ws.jaxme.sqls.db2; 18 19 import java.util.Collection ; 20 21 import org.apache.ws.jaxme.sqls.SQLGenerator; 22 23 24 28 public interface DB2SQLGenerator extends SQLGenerator { 29 31 public Collection getCreate(BufferPool pBufferPool); 32 33 35 public Collection getDrop(BufferPool pBufferPool); 36 37 39 public Collection getCreate(TableSpace pTableSpace); 40 41 43 public Collection getDrop(TableSpace pTableSpace); 44 45 48 public void setCreatingTableSpaceReferences(boolean pCreatingTableSpaceReferences); 49 50 53 public boolean isCreatingTableSpaceReferences(); 54 } 55 | Popular Tags |