| org.jasig.portal.rdbm.IJoinQueryString
All known Subclasses: org.jasig.portal.rdbm.JoinQueryString,
IJoinQueryString | public interface IJoinQueryString (Code) | | The join query interface defines methods for storing and retrieving
queries fragments that will be used for performing joins in SQL.
author: Eric Dalquist edalquist@unicon.net version: $Revision: 34769 $ $Date: 2004-10-17 12:43:50 -0700 (Sun, 17 Oct 2004) $ |
Method Summary | |
public void | addQuery(String key, String value) Adds a query for the specified key, overwriting and query that was
already associated with the key. | public String | getQuery(String key) Gets a query by the specified key.
Parameters: key - The key to find the query for. |
addQuery | public void addQuery(String key, String value) throws SQLException(Code) | | Adds a query for the specified key, overwriting and query that was
already associated with the key.
Parameters: key - The key to store the query under. Parameters: value - The query to store under the key. throws: SQLException - |
getQuery | public String getQuery(String key) throws SQLException(Code) | | Gets a query by the specified key.
Parameters: key - The key to find the query for. The query for the key. throws: SQLException - Will be thrown if no query exists for the key |
|
|