DatabaseMetaData.supportsConvert
Interface Overview | Interface Members |
This Package |
All Packages
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.
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