Re: Generate a JSP database "access bean" through table interrogation?

2001-05-25 Thread Gopi Mandava
Check Town-2.2 from http://www.working-dogs.com/town/ It creates beans from a database, and generate the insert/update/delete/retrieve methods. Gopi >I was thinking of a utility that would interrogate a set of database tables, >and then generate java beans that would be able to get/set, update,

Re: Generate a JSP database "access bean" through table interrogation?

2001-05-25 Thread erik morton
Hi Keith. You're talking about implementing a persistence layer - still one of the hottest topics in OO development. I'll point you in the direction of some of the best work in this area - http://www.ambysoft.com. Exolab is developing a java based persistence layer (Castor) that is gaining allot

Generate a JSP database "access bean" through table interrogation?

2001-05-25 Thread Keith Kwiatek
Hello, I was thinking of a utility that would interrogate a set of database tables, and then generate java beans that would be able to get/set, update, delete, insert, and validate.. the beans could then be "dropped" onto an html page (as in Macromedia Ultradev 4). Has anyone found anything