Re: [Lift] Re: H2 Database?

2009-11-21 Thread jlist9
OK that's good to know. Thanks! I'll give that a try. On Sat, Nov 21, 2009 at 5:45 PM, philip wrote: > Hi, I am using H2 database without any problems so far. Just change > the connection, use the right maven build or jars. > >    val driverName: String = Props.get("db.driver") openOr >      "org

[Lift] Re: H2 Database?

2009-11-21 Thread philip
Hi, I am using H2 database without any problems so far. Just change the connection, use the right maven build or jars. val driverName: String = Props.get("db.driver") openOr "org.h2.Driver" val dbUrl: String = Props.get("db.url") openOr "jdbc:h2:tcp://localhost/~/databasename"

[Lift] Re: H2 Database

2009-11-05 Thread sunanda
Hi Naftoli, I was just asking which file to put as main class. It is org.h2.tools.Server. Everything is set now. Thanks. Sunanda On Nov 6, 1:52 pm, Naftoli Gugenheim wrote: > What do you mean configure it? > > - > > sunanda wrote: > > Hi, > Though this questio

[Lift] Re: H2 Database

2009-11-05 Thread Naftoli Gugenheim
What do you mean configure it? - sunanda wrote: Hi, Though this question is not related to Lift I would appreciate if anyone can suggest me how to configure h2 database on eclipse. I was trying with Hsql , but came to know that Lift does not support Hsql. Su