From: <one...@us...> - 2003-01-17 10:27:44
|
Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate In directory sc8-pr-cvs1:/tmp/cvs-serv18718/net/sf/hibernate Modified Files: Query.java Log Message: added Query.getQueryString() and an exception message Index: Query.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/Query.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Query.java 14 Jan 2003 14:07:02 -0000 1.5 --- Query.java 17 Jan 2003 10:27:41 -0000 1.6 *************** *** 53,56 **** --- 53,62 ---- public interface Query { /** + * Get the query string. + * + * @return the query string + */ + public String getQueryString(); + /** * Return the Hibernate types of the query result set. * @return an array of types |