if (columnTypes[col - 1] == Types.CLOB) {
sb.append(anObj != null ? anObj : "null"); //$NON-NLS-1$
} else if (columnTypes[col - 1] == Types.BLOB) {
sb.append(anObj != null ? "BLOB" : "null"); //$NON-NLS-1$ //$NON-NLS-2$
} else if (columnTypes[col - 1] == Types.SQLXML) {
final SQLXML xml = (SQLXML)anObj;
sb.append(anObj != null ? prettyPrint(xml) : "null"); //$NON-NLS-1$
} else {
sb.append(anObj != null ? anObj : "null"); //$NON-NLS-1$
}
if (col != columnCount) {