int styleSheetVersion = rs.getInt(RelDatabaseColCSS);
int urlDecodingVersion = RelConfigFileColFileVersionValUnknown;
if (org.dbwiki.lib.JDBC.hasColumn(rs, RelDatabaseColURLDecoding)) {
urlDecodingVersion = rs.getInt(RelDatabaseColURLDecoding);
}
WikiAuthenticator authenticator = new WikiAuthenticator("/" + name, rs.getInt(RelDatabaseColAuthentication), _users);
int autoSchemaChanges = rs.getInt(RelDatabaseColAutoSchemaChanges);
ConfigSetting setting = new ConfigSetting(layoutVersion, templateVersion, styleSheetVersion, urlDecodingVersion);
_wikiListing.add(new DatabaseWikiHttpHandler(id, name, title, authenticator, autoSchemaChanges, setting, _connector, this));
}
rs.close();