* converted to their final values immediately.
*/
public static Object toDataStoreValue(ValueMapping vm, Object val,
Column[] cols, JDBCStore store) {
ValueHandler handler = vm.getHandler();
val = handler.toDataStoreValue(vm, val, store);
if (val == null) {
if (cols.length > 1)
return new Object[cols.length];
return null;
}