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 t开发者_开发知识库o modify this database.
My problem is: i didn't find anything (like a tutorial) to do something like that.
Maybe somebody could help?
Well, there's the lift book, the website, and of course the google groups. The book being the best place to get started.
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)
精彩评论