DatabaseMetaData.supportsConvert

DatabaseMetaData.supportsConvert

Interface Overview | Interface Members | This Package | All Packages

Syntax 1
public abstract boolean supportsConvert() throws SQLException
Returns
true if so
Description
Is the CONVERT function between SQL types supported?

Exceptions
SQLException if a database-access error occurs.



Syntax 2
public abstract boolean supportsConvert( int fromType, int toType ) throws SQLException
Parameters
fromType
the type to convert from
toType
the type to convert to
Returns
true if so
Description
Is CONVERT between the given SQL types supported?

Exceptions
SQLException if a database-access error occurs.
See Also
Types