try
{
values = getKeyValues(m_broker, cld, oid);
for (i = 0; i < values.length; i++)
{
ValueContainer valContainer = values[i];
if (valContainer.getValue() != null)
{
m_platform.setObjectForStatement(stmt, i + 1, valContainer.getValue(), valContainer.getJdbcType().getType());
}
else
{
m_platform.setNullForStatement(stmt, i + 1, valContainer.getJdbcType().getType());
}
}
}
catch (SQLException e)
{