Package org.hotrod.dynamicsql
Class PreparedQuery
- java.lang.Object
-
- org.hotrod.dynamicsql.PreparedQuery
-
- Direct Known Subclasses:
PreparedInsertQuery,PreparedModificationQuery,PreparedSelectQuery
public abstract class PreparedQuery extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected StringformattedSQLstatic intMAX_DISPLAY_VALUEprotected List<ParameterInstance>parametersprotected Stringsql
-
Constructor Summary
Constructors Constructor Description PreparedQuery(String sql, List<ParameterInstance> parameters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPreview()StringgetPreview(boolean includeParameters)
-
-
-
Field Detail
-
sql
protected String sql
-
parameters
protected List<ParameterInstance> parameters
-
formattedSQL
protected String formattedSQL
-
MAX_DISPLAY_VALUE
public static final int MAX_DISPLAY_VALUE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PreparedQuery
public PreparedQuery(String sql, List<ParameterInstance> parameters)
-
-