RocKuro
RocKuro

Reputation: 11

create a database with scala/lift and a simple interface to log in

I'm a beginner with scala/lift and POO. At first, i would like to create a database and a simple interface to log in (ID and password). Then create an application to allow the user to modify this database.

My problem is: i didn't find anything (like a tutorial) to do something like that.

Maybe somebody could help?

Upvotes: 1

Views: 1466

Answers (2)

Augustus Kling
Augustus Kling

Reputation: 3333

See lift's demo application at github. The file creates an object DBVendor which handles the connection creation and is bound to the rest of the code like this:

DB.defineConnectionManager(DefaultConnectionIdentifier, DBVendor)

Upvotes: 0

Jim Barrows
Jim Barrows

Reputation: 3634

Well, there's the lift book, the website, and of course the google groups. The book being the best place to get started.

Upvotes: 4

Related Questions