ITypeInfo info = DataStorageManager.getInfoForType(targetType);
// multival styff
if (!info.canSaveInline())
{
TypeMultiValInfo multiInfo = (TypeMultiValInfo) info;
String ID = dbValue.toString();
ID = TypeMultiValInfo.getUIDFromUnique(ID);
// get the data for the MultiVals
Statement s = getDbConnection().createStatement();
ResultSet result = s.executeQuery("SELECT * FROM " + FEDATA_PREFIX + targetType.getFileSafeName() + " WHERE " + MULTI_MARKER + "='" + ID + "'");
TypeData data = DataStorageManager.getDataForType(targetType);
TypeEntryInfo entryInfo = multiInfo.getEntryInfo();
String connector = multiInfo.getEntryName();
// create the MultiVal object
TypeData temp;
int i = 0;
while (result.next())