[Lift] lift with MS Sequel

2009-02-09 Thread Amit Kumar Verma
Hi, do lift support MSSQL db ? Thanks Amit Kumar Verma --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group,

[Lift] Re: lift with MS Sequel

2009-02-09 Thread Amarjeet Singh
Lift should technically work with any standard RDBMS, as long as it has a supported JDBC driver. MSSQL does have both commercial as well as Microsoft supplied JDBC drivers. Though I have never tested it myself, it should work. Regards On Mon, Feb 9, 2009 at 11:46 AM, Amit Kumar Verma

[Lift] Re: lift with MS Sequel

2009-02-09 Thread Derek Chen-Becker
The MS provided JDBC driver is actually pretty high quality in my experience. In particular, make sure you get the 2005 version of the driver: http://msdn.microsoft.com/en-us/data/aa937724.aspx Derek On 2/9/09, Amarjeet Singh amarjeet.aur...@gmail.com wrote: Lift should technically work with

[Lift] Re: lift with MS Sequel

2009-02-09 Thread David Pollak
On Sun, Feb 8, 2009 at 10:16 PM, Amit Kumar Verma cdac.a...@gmail.comwrote: Hi, do lift support MSSQL db ? Lift's mapper currently supports PostgreSQL, MySQL, Derby, H2, etc. I'm expecting MS SQL and Oracle support by end of week. You can use JPA for other DB support. Thanks Amit

[Lift] Re: 24 hours say the memory leaks are gone

2009-02-09 Thread David Pollak
Good stuff! On Mon, Feb 9, 2009 at 11:26 AM, Marius marius.dan...@gmail.com wrote: Hi, I just committed the changes. There are a few new LiftRules variables /** * If a Comet request fails timeout for this period of time. Default value is 10 seconds */ var

[Lift] Implementing RESTful web services using Lift

2009-02-09 Thread Chris Richardson
Hi, I just started playing around with Scala and Lift and with @dpp's help wrote a simple RESTful web service. I wanted to share the code with this group and get feedback and suggestions about improvements. See below. Thanks. Chris In Boot.scala you register one or more WsEndpoints (a trait

[Lift] Re: lift with MS Sequel

2009-02-09 Thread Tim Perrett
There are mixed reports about that driver - personally I didn't get on very well with and would go for JTDS :-) On 09/02/2009 16:52, Derek Chen-Becker dchenbec...@gmail.com wrote: The MS provided JDBC driver is actually pretty high quality in my experience. In particular, make sure you get

[Lift] JTA showSQL

2009-02-09 Thread Oliver
Hi Derek and interested parties I know there is a showSQL option that can be enabled with JTA/Hibernate but I find the output verbose and uninformative about parameter replacement. So, I have my own ScalaQuery that allows simple debugging - the main differences are - var queryParams:

[Lift] Re: *** BREAKING CHANGES ***

2009-02-09 Thread Oliver
If I try to use the following, I get a reassignment to Val error - any ideas? LiftRules.exceptionHandler.prepend = { case (mode, state, ex) = RedirectResponse(/error) } On Wed, Dec 24, 2008 at 5:41 AM, Marius marius.dan...@gmail.com wrote: Folks, I just committed a couple of changes

[Lift] Re: JTA showSQL

2009-02-09 Thread Derek Chen-Becker
Interesting idea. I'll look into adding something like this (configurable at boot and/or runtime) into scalajpa. Derek On 2/9/09, Oliver ola...@gmail.com wrote: Hi Derek and interested parties I know there is a showSQL option that can be enabled with JTA/Hibernate but I find the output