return;
}
Column col = disc.getColumns()[0];
DBDictionary dict = store.getDBDictionary();
SQLBuffer select = dict.toSelect(new SQLBuffer(dict).append(col),
store.getFetchConfiguration(),
new SQLBuffer(dict).append(col.getTable()), null, null,
null, null, true, false, 0, Long.MAX_VALUE);
Log log = disc.getMappingRepository().getLog();
if (log.isTraceEnabled())
log.trace(_loc.get("load-subs", col.getTable().getFullName()));
ClassLoader loader = getClassLoader(store);
Connection conn = store.getConnection();
PreparedStatement stmnt = null;
ResultSet rs = null;
try {
stmnt = select.prepareStatement(conn);
rs = stmnt.executeQuery();
String className;
while (rs.next()) {
className = dict.getString(rs, 1);
if (StringUtils.isEmpty(className))