case Types.BIGINT: case Types.INTEGER: case Types.TINYINT: case Types.SMALLINT: return Ontology.INTEGER; case Types.FLOAT: case Types.REAL: case Types.DECIMAL: case Types.DOUBLE: return Ontology.REAL; case Types.NUMERIC: return Ontology.NUMERICAL; case Types.CHAR: case Types.VARCHAR: case Types.CLOB: case Types.BINARY: case Types.BIT: case Types.LONGVARBINARY: case Types.BLOB: case Types.JAVA_OBJECT: case Types.STRUCT: case Types.VARBINARY: case Types.LONGVARCHAR: return Ontology.NOMINAL; case Types.DATE: case Types.TIME: case Types.TIMESTAMP: return Ontology.ORDERED; default: return Ontology.NOMINAL;
attribute1 --> String: '3243', Int: '3243', Double: '3243.0', Missing: 'false'
System.out.println(attributeName + "--> String: " + resultSet.getString(col) + ", Int: " + resultSet.getInt(col)....);
mierswa wrote:The error message just tells that it is not possible to get a number from a text. So nothing wrong here: it was just a debug output in the beta version which is gone now. Just update to the latest version and you will no longer get these messages.