Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issue with a date extraction in SQL Server

I'm trying to list the dates registered in a table with SQL Server, but my problem is all the dates I'm extracting differs of 2 days with the dates in the table.

For example, I got 2012-12-25 in my database and when I retrieve it and cast it to a Java.util.Date, it becames 2012-12-23...

I've got processes on dates in another table which are working fine.

I'm using SQL Server 2008, Hibernate 3 and Spring 3.

Edit:

The column data type for the table is date, I'm retrieving it using hibernate so here is my hibernate query call:

public List<Holiday> retrieveAllHolidays() {
    return (List<Holiday>) sessionFactory.getCurrentSession().createQuery("from Holiday")
    .list();
}

The holiday object got two attributes: a String and a Date (this one is incorrect after retrieving from database).

like image 647
Tony Avatar asked Jan 31 '12 12:01

Tony


1 Answers

The problem was linked with the JRE 7 support of the JDBC Driver (a problem with the getDate() function).

See this post for more informations: Microsoft JDBC driver team blog

Thanks again Martin smith for pointing to that other issue!

like image 98
Tony Avatar answered Nov 15 '22 16:11

Tony