[Lift] Re: New JPA Demo version

2008-10-04 Thread Tim Perrett
Great stuff Derek On Oct 4, 5:13 am, Derek Chen-Becker [EMAIL PROTECTED] wrote: I added in Oliver's UserType support for enums and some utility methods on the Model object (wrapEM). I didn't have time this week to work on getting JNDI and JTA to work in Jetty, but hopefully next week will be

[Lift] Re: Dates from database

2008-10-04 Thread Jorge Ortiz
A MappedDateTime wraps a java.util.Date, just like a MappedInt wraps an Int. There is an implicit conversion that automatically turns MappedDateTime into a Date, or you can invoke it directly by using the is method. --j On Sat, Oct 4, 2008 at 1:47 PM, Charles F. Munat [EMAIL PROTECTED] wrote:

[Lift] Re: booleans in fieldOrder cause infinite list?

2008-10-04 Thread David Pollak
On Sat, Oct 4, 2008 at 12:29 PM, Charles F. Munat [EMAIL PROTECTED] wrote: That worked. Thanks! (And I like List(x,y) better than the x :: y syntax anyway.) Scalac looks only at the right-most element when type inferencing the a :: b :: c :: Nil statement where it looks at all the elements