Reputation: 11
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
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
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