Ontimize 5.2072EN

com.ontimize.db
Interface SQLStatementBuilder.SQLConditionValuesProcessor

All Known Implementing Classes:
SQLStatementBuilder.DefaultSQLConditionValuesProcessor
Enclosing interface:
SQLStatementBuilder

public static interface SQLStatementBuilder.SQLConditionValuesProcessor

This interface defines the basic method that must be implemented by any class that creates the condition string for a SQL Statement.


Method Summary
 java.lang.String createQueryConditions(java.util.Hashtable conditions, java.util.Vector wildcards, java.util.Vector values)
          Creates the condition string for a SQL Statement.
 void setSQLStatementHandler(SQLStatementHandler handler)
           
 

Method Detail

createQueryConditions

public java.lang.String createQueryConditions(java.util.Hashtable conditions,
                                              java.util.Vector wildcards,
                                              java.util.Vector values)
Creates the condition string for a SQL Statement.

Parameters:
conditions - condition list that be using for create the string
wildcards - column list that can use wildcards
values - vector where the value of each processed conditions is stored
Returns:

setSQLStatementHandler

public void setSQLStatementHandler(SQLStatementHandler handler)

Ontimize