Re: New Data Type - Date in Sql Server 2008

2010-04-04 Thread Clinton Begin
iBATIS returns whatever type you tell it to based on your result maps or just the bean property type. Based on this it calls rs.getXxxx() where X() is the type. iBATIS performs no conversions. So in a sense, as long as the new SQL Server driver is JDBC compliant, it should work fine. Clin

New Data Type - Date in Sql Server 2008

2010-04-04 Thread kiran vuppla
Hi, I am getting issues with iBatis when using with Sql-Server 2008. A new data type (DATE) has been introduced in this version and when I try to run the query using iBatis to get the data in my application it is returning in the form of STRING instead DATE. I want iBatis to return the Date t