* @param name display name for the catalog
* @return a VoTable
* @throws IOException on error
*/
public static VoTable createVoTable(DataSource datsrc, String id, String name) throws IOException {
StarTableFactory factory = _getStarTableFactory();
StarTable starTable = factory.makeStarTable(datsrc);
VoTable voTable = createVoTable(starTable, null, MAX_ROWS);
if (name == null) {
name = starTable.getName();
}
if (name == null) {