I am pleased to announce that the Wellington Java User Group meeting for January will be held on: Wednesday, 11th January, 2006 12:00 for 12:15-1.00pm Please...
... Hash: SHA1 Hi and happy new year, just for a change is there anyone on this group, or does anyone know someone (preferably in Auckland) with good Sybase...
Murray Knox
murrayk@...
Jan 9, 2006 2:43 am
1099
Yes, although last used about 1998. Date: Mon, 09 Jan 2006 15:43:14 +1300 From: Murray Knox <murrayk@...> Subject: Sybase Skills anyone? ... Hash:...
A reminder that the January Wellington Java User Group meeting is being held tomorrow at noon: Wednesday, 11th January, 2006 12:00 for 12:15-1.00pm Please...
I've been playing with it abit for the last month or so. I'm really liking it, and especially liking some of the new things that are coming in 1.2. It's quite...
I just had a really quick look at the feature list, and I must admit I like the idea of complete separation of Java and HTML. Will definitely be taking a...
For a basic app its pretty simple - I downloaded the IntelliJ IDEA quick start pack to start with which includes jetty, an preconfigure IDEA project, sample...
Hi, Being relatively new to Hibernate (2.x) I find that persisted object properties of type java.util.Date are returned to life as java.sql.Timestamp...
I thought everyone out there was using Hibernate. Or does the deafening silence that met this question mean that ***GASP*** the hype could be wrong? ... -- ...
One thing that differentiates Wicket from say Tapestry or JSF (not sure about ASP.NET) is that its an unmanaged system in that the developer manually creates...
Hmmm, technically its correct thou - javax.sql.Timestamp extends java.util.Date so the Timestamp returned from the MySQL JDBC driver is valid for what...
... But there several problems here: * The toString() method of the two classes return the timestamp in totally different formats (so much for Liskov). * JDK...
... Riddle me this: If I set the property type in the *.hbm.xml files to "java.util.Date" I get a java.sql.Timestamp instance - If I set the type to "date" I...
... From Hibernate in Action: Date and time mapping types Table 6.2 lists Hibernate types associated with dates, times, and timestamps. In your domain model,...
... java.util.Date in your objects AND use DateTime ( SQL Server ) column type for readability of the db. As Gavin King says: "Why would you want to pollute...
The domain model is consistently riddled with java.util.Date declarations. How would I get Hibernate to return java.util.Date over java.sql.Date? Thanks Martin...
Can you create a custom converter to do this for you? Jonathan Wright Developer ... Practiv (NZ) Ltd http://www.practiv.com Email: jonathan.wright@... ...
... Not with the Java namespaces, I hope!! :) I agree - sounds somewhat braindead. I'd prefer an error (It's a Timestamp, and you said Date!) not just passing...
... I pondered on what you said and then wrote the following: import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ...
... This must be running in SQL Server compatibility mode ;) The last I knew SQL Server didn't include a SQL DATE type and stored everything as DATETIME. ... ...
Nigel Charman
Nigel.Charman@...
Jan 12, 2006 4:56 am
1124
[snip] ... Yes, with code such the following: public Timestamp(long time) { super((time/1000)*1000); nanos = (int)((time%1000) * 1000000); if (nanos < 0) { ...
Bizarre... I have an app using hibernate (started in 2.x, updated to 3.1) and all along it had <property name="dateInSystem"> <column name="DATEINSYSTEM"...
As the hibernate guys say, it ordinarily shouldn't be a problem. I have had a look at the source code for DateType (http://tinyurl.com/bt2sd ) and see that it...