Ejemplo n.º 1
0
 public boolean fillCallableStatementParam(
     int nParamId,
     StoredProcParamDescBase storedProcParamDescBase,
     DbPreparedCallableStatement callableStatement) {
   String cs = storedProcParamDescBase.getInValueAsString();
   return callableStatement.setInValue(nParamId, cs);
 }
Ejemplo n.º 2
0
 protected void setInValueWithException(int nParamId, DbPreparedCallableStatement stmt)
     throws SQLException {
   stmt.setInValueWithException(nParamId, m_sVal);
 }