Search the web
Sign In
New User? Sign Up
nzjava · New Zealand Java Developers Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1097 - 1126 of 3363   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1097
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...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 5, 2006
10:04 pm
1098
... 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@...
Send Email
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:...
Randall Britten
radicity
Offline Send Email
Jan 9, 2006
9:02 pm
1100
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...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 10, 2006
12:48 am
1101
Apologies Martin - I'll be out on Kapiti Island. See you next month Nigel...
Nigel Charman
Nigel.Charman@...
Send Email
Jan 10, 2006
9:36 am
1102
I have just been doing some reading about Wicket. Has anyone had some hands on experence with it? Richard...
richard schmidt
informhandstrap
Offline Send Email
Jan 11, 2006
8:34 pm
1103
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...
Mark Derricutt
talios2k
Offline Send Email
Jan 11, 2006
8:36 pm
1104
What is the leaning curve like?...
richard schmidt
informhandstrap
Offline Send Email
Jan 11, 2006
8:42 pm
1105
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...
Jonathan Wright
ukjjw
Offline Send Email
Jan 11, 2006
8:46 pm
1106
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...
Mark Derricutt
talios2k
Offline Send Email
Jan 11, 2006
8:50 pm
1107
... No experience, but Javalobby has a few articles on it. The starting point is: http://www.javalobby.org/java/forums/t60786.html Martin -- ...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 11, 2006
9:46 pm
1108
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...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 11, 2006
9:54 pm
1109
Thanks for the link - I was curious too. On the surface, it looks very much like.... ASP.NET :) Not that that is a bad thing....
Nic Wise
nicwisemvp
Offline Send Email
Jan 11, 2006
11:23 pm
1110
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? ... -- ...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 12, 2006
12:28 am
1111
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...
Mark Derricutt
talios2k
Offline Send Email
Jan 12, 2006
12:32 am
1112
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...
Mark Derricutt
talios2k
Offline Send Email
Jan 12, 2006
12:55 am
1113
... But there several problems here: * The toString() method of the two classes return the timestamp in totally different formats (so much for Liskov). * JDK...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 12, 2006
1:17 am
1114
Works for me (I think) in Nhibernate :)...
Nic Wise
nicwisemvp
Offline Send Email
Jan 12, 2006
1:59 am
1115
... 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...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 12, 2006
2:09 am
1116
... 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,...
Shane Mingins
shanemingins
Offline Send Email
Jan 12, 2006
2:27 am
1117
... 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...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 12, 2006
2:29 am
1118
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...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 12, 2006
2:51 am
1119
Can you create a custom converter to do this for you? Jonathan Wright Developer ... Practiv (NZ) Ltd http://www.practiv.com Email: jonathan.wright@... ...
Jonathan Wright
ukjjw
Offline Send Email
Jan 12, 2006
2:56 am
1120
... 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...
Nic Wise
nicwisemvp
Offline Send Email
Jan 12, 2006
3:26 am
1121
... I pondered on what you said and then wrote the following: import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 12, 2006
4:40 am
1122
... Yes. From Melbourne. Both he and Christian can be quite "blunt" with their comments! [Non-text portions of this message have been removed]...
Shane Mingins
shanemingins
Offline Send Email
Jan 12, 2006
4:41 am
1123
... 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@...
Send Email
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) { ...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 12, 2006
5:06 am
1125
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"...
Karl Leaning
wibblebob2000
Offline Send Email
Jan 12, 2006
6:12 am
1126
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...
Martin Paulo
martinpaulo10
Offline Send Email
Jan 12, 2006
7:31 am
Messages 1097 - 1126 of 3363   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help