In addition, implements {@link #toString()} in a useful way (you can see theSQL and parameters), which is invaluable when debugging.
{@link #addParameter(int)} (and all overloaded versions of it for scalar types)adds a "?" to the statement and records the parameter value.
{@link #addParameter(Integer)} (and all overloaded version of it for wrappertypes) does the same ... unless the value is null, in which case "NULL" is inserted into the statement.
{@link #addParameterList(int[],String)} (and all overloaded versions of it)simply invokes the appropriate {@link #addParameter(int)}, adding the separator in between parameters. @version $Id: StatementAssembly.java 243791 2004-02-19 17:38:13Z hlship $ @author Howard Lewis Ship
|
|
|
|
|
|
|
|