1 22 23 package org.xquark.xml.xdbc; 24 25 29 public interface XMLStatement { 30 31 32 33 34 35 46 public boolean execute(String query) throws XMLDBCException; 47 48 59 public boolean execute(String query, int queryType) throws XMLDBCException; 60 61 69 public XMLResultSet executeQuery(String query) throws XMLDBCException; 70 71 83 public XMLResultSet executeQuery(String query, int queryType) throws XMLDBCException; 84 85 95 public XMLDocumentSet executeDocumentQuery(String query) throws XMLDBCException; 96 97 98 99 100 101 106 public XMLResultSet getResultSet() throws XMLDBCException; 107 108 116 public XMLDocumentSet getDocumentSet() throws XMLDBCException; 117 118 119 120 121 122 126 public XMLConnection getConnection(); 127 128 133 public void close() throws XMLDBCException; 134 135 136 137 138 139 143 public void setBaseURI(String baseURI); 144 148 public String getBaseURI(); 149 150 151 } 152 153 | Popular Tags |