Rowset message

When using the Sun implementation of the JDBC RowSet, and I use the constructor of JDBCRowSetImpl with the Connection object, I keep getting the "JdbcRowSet (setTypeMap): The Connection.setTypeMap(Map) method is not implemented." message.

Since I'll be (hopefully) using this in a project, I'd like to get rid of that message. Anyone got an idea on how to do this?

[379 byte] By [lievendocloa] at [2007-10-1 5:01:33]
# 1
This might have something to do with the implementation of the driver classes. It is quite possible that the drivers you are using may not have an implementation for the method.
annie79a at 2007-7-9 5:40:47 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
I'm using the JTDS driver to access a SQL Server 2000... I'm going to find out if I get the same message when using the MS driver.
Lieven_Docloa at 2007-7-9 5:40:47 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3
jTDS does not implement setTypeMap() and as far as I know the other SQL Server drivers don't either. You can however try them out; the commercial drivers have trial versions that can be freely downloaded.Alin,The jTDS Project.
SAfe13a at 2007-7-9 5:40:47 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...