1 package org.odmg; 2 3 4 5 14 15 16 17 public interface OQLQuery 18 19 { 20 21 22 23 46 47 public void create(String query) throws QueryInvalidException; 48 49 50 51 92 93 public void bind(Object parameter) throws QueryParameterCountInvalidException, 94 95 QueryParameterTypeInvalidException; 96 97 98 99 124 125 public Object execute() throws QueryException; 126 127 } 128 129 | Popular Tags |