Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-25-2007, 09:39 PM
Ed Ed is offline
Senior Member
 
Join Date: Jun 2007
Posts: 110
Ed is on a distinguished road
Doubt with hibernate and date field
I'm using hibernate to access to a Data base done with MSAccess
The class that I am persisting has an attribute which type is "java.sql.Timestamp (its name is hExit), the type of the columns is Datetime

I don't have problems to save it.
The problems is when I want to access to the records filtering the date
I tried using the "criteria" that provide the API of hibernate, but it gives to me all of record or none

can you help me?
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-02-2007, 05:22 PM
Senior Member
 
Join Date: Jun 2007
Posts: 164
Heather is on a distinguished road
I would change the attributes to a Calendar type .
the mapping would be something like that:
Code:
<property name="date" type="calendar" column="finishdate"/>
Code:
Query query = getSession().createQuery(select .... where (req.date between :date1 and :date2) .setCalendar("date1 ",this.getYear()[0]) .setCalendar("date2",this.getYear()[1]);
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 07-02-2007, 05:25 PM
Senior Member
 
Join Date: Jun 2007
Posts: 119
Peter is on a distinguished road
Active " show_sql " and check the SQL query that is sending you.
Maybe Access doesn't support "< >,between dates" and so on.
search on internet this.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Difference between current date and anothe date vijay balusamy New To Java 1 04-16-2008 05:15 PM
Hibernate doubt Peter Database 2 07-04-2007 02:41 PM
org.hibernate.ejb.Version <clinit> INFO: Hibernate EntityManager 3.2.0.CR1 Heather Database 2 06-30-2007 04:01 PM
problem with date field Ed Database 2 06-12-2007 05:27 PM
Final field question derrickD Advanced Java 1 04-28-2007 11:37 PM


All times are GMT +3. The time now is 06:26 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org