1 21 22 package org.apache.derby.iapi.sql.compile; 23 24 import org.apache.derby.iapi.error.StandardException; 25 26 30 import org.apache.derby.impl.sql.compile.QueryTreeNode; 31 32 43 44 45 public interface Parser 46 { 47 48 60 public QueryTreeNode parseStatement(String statementSQLText, 61 Object [] paramDefaults) 62 throws StandardException; 63 64 65 public QueryTreeNode parseStatement(String statementSQLText) 66 throws StandardException; 67 68 74 public String getSQLtext(); 75 76 } 77 | Popular Tags |