is of type Object, and is null
Dave Cramer
*/
public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException
{
+ if (x == null){
+ setNull(parameterIndex,Types.OTHER);
+ return;
+ }
switch (targetSqlType)
{
case Types.TINYINT:
*/
public void setObject(int parameterIndex, Object x) throws SQLException
{
+ if (x == null){
+ setNull(parameterIndex,Types.OTHER);
+ return;
+ }
if (x instanceof String)
setString(parameterIndex, (String)x);
else if (x instanceof BigDecimal)
*/
public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException
{
+ if (x == null){
+ setNull(parameterIndex,Types.OTHER);
+ return;
+ }
switch (targetSqlType)
{
case Types.TINYINT:
*/
public void setObject(int parameterIndex, Object x) throws SQLException
{
+ if (x == null){
+ setNull(parameterIndex,Types.OTHER);
+ return;
+ }
if (x instanceof String)
setString(parameterIndex, (String)x);
else if (x instanceof BigDecimal)