Commit 99aa2f8e authored by Barry Lind's avatar Barry Lind

patch submitted by Jason Davies jason@netspade.com to improve...

patch submitted by Jason Davies jason@netspade.com to improve ResultSetMetaData.getColumnClassName() support
parent c50bf019
......@@ -935,9 +935,9 @@ public class ResultSet extends org.postgresql.ResultSet implements java.sql.Resu
switch (field.getSQLType())
{
case Types.BIT:
return new Boolean(getBoolean(columnIndex));
return getBoolean(columnIndex) ? Boolean.TRUE : Boolean.FALSE;
case Types.SMALLINT:
return new Short((short)getInt(columnIndex));
return new Short(getShort(columnIndex));
case Types.INTEGER:
return new Integer(getInt(columnIndex));
case Types.BIGINT:
......
......@@ -780,9 +780,9 @@ public class ResultSet extends org.postgresql.ResultSet implements java.sql.Resu
switch (field.getSQLType())
{
case Types.BIT:
return new Boolean(getBoolean(columnIndex));
return getBoolean(columnIndex) ? Boolean.TRUE : Boolean.FALSE;
case Types.SMALLINT:
return new Short((short)getInt(columnIndex));
return new Short(getShort(columnIndex));
case Types.INTEGER:
return new Integer(getInt(columnIndex));
case Types.BIGINT:
......
......@@ -471,6 +471,21 @@ public class ResultSetMetaData implements java.sql.ResultSetMetaData
// ** JDBC 2 Extensions **
// This can hook into our PG_Object mechanism
/**
* Returns the fully-qualified name of the Java class whose instances
* are manufactured if the method <code>ResultSet.getObject</code>
* is called to retrieve a value from the column.
*
* <code>ResultSet.getObject</code> may return a subclass of the class
* returned by this method.
*
* @param column the first column is 1, the second is 2, ...
* @return the fully-qualified name of the class in the Java programming
* language that would be used by the method
* <code>ResultSet.getObject</code> to retrieve the value in the specified
* column. This is the class name used for custom mapping.
* @exception SQLException if a database access error occurs
*/
public String getColumnClassName(int column) throws SQLException
{
/*
......@@ -505,14 +520,15 @@ public class ResultSetMetaData implements java.sql.ResultSetMetaData
Types.TIMESTAMP,Types.TIMESTAMP
*/
int sql_type = getField(column).getSQLType();
Field field = getField(column);
int sql_type = field.getSQLType();
switch (sql_type)
{
case Types.BIT:
return("java.lang.Boolean");
case Types.SMALLINT:
return("java.lang.Integer");
return("java.lang.Short");
case Types.INTEGER:
return("java.lang.Integer");
case Types.BIGINT:
......@@ -527,11 +543,23 @@ public class ResultSetMetaData implements java.sql.ResultSetMetaData
case Types.VARCHAR:
return("java.lang.String");
case Types.DATE:
return("java.sql.Date");
case Types.TIME:
return("java.sql.Time");
case Types.TIMESTAMP:
return("java.sql.Timestamp");
case Types.BINARY:
case Types.VARBINARY:
return("java.sql.Object");
case Types.ARRAY:
return("java.sql.Array");
default:
throw org.postgresql.Driver.notImplemented();
String type = field.getPGType();
if ("unknown".equals(type))
{
return("java.lang.String");
}
return("java.lang.Object");
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment