* @param column the first column is 1, the second is 2, ...
* @return schema name or "" if not applicable
* @exception SQLException thrown on failure
*/
public String getSchemaName(int column) throws SQLException {
ResultColumnDescriptor cd = columnInfo[column - 1];
String s = cd.getSchemaName();
// database returns null when no schema name to differentiate from empty name
return (s==null? "" : s);
}