com.f1j.data.source
Interface Query

All Known Implementing Classes:
JDBC

Deprecated. As of 9.0, use DatabaseQuery instead.

public interface Query

This is the basic interface to all data sources that are queries.


Method Summary
 java.lang.String getConnectionParameters()
          Deprecated. As of 9.0, no replacement.
 java.lang.String getQuery()
          Deprecated. As of 9.0, use DatabaseQuery.getJdbcQuery instead.
 void setConnectionParameters(java.lang.String parameters)
          Deprecated. As of 9.0, no replacement.
 void setQuery(java.lang.String query)
          Deprecated. As of 9.0, use DatabaseQuery.setQuery instead.
 

Method Detail

getConnectionParameters

public java.lang.String getConnectionParameters()
Deprecated. As of 9.0, no replacement.
Returns the current connection parameters.
Returns:
a string describing the connection parameters of the current query.
See Also:
setConnectionParameters(java.lang.String)

getQuery

public java.lang.String getQuery()
Deprecated. As of 9.0, use DatabaseQuery.getJdbcQuery instead.
Returns the current query.
Returns:
a string representing the current query.
See Also:
setQuery(java.lang.String)

setConnectionParameters

public void setConnectionParameters(java.lang.String parameters)
Deprecated. As of 9.0, no replacement.
Sets the connection parameters.
Parameters:
parameters - the parameters of the connection.
See Also:
getConnectionParameters()

setQuery

public void setQuery(java.lang.String query)
Deprecated. As of 9.0, use DatabaseQuery.setQuery instead.
Sets the query.
Parameters:
query - a text string of an SQL query beginning with the SQL select command, describing the tables and fields to connect to.
See Also:
getQuery()