Frank, Then I think you need to realize that there is nothing database-specific in Tapestry. Tapestry pages will work with any objects you give them. It makes no difference whether such objects that were retrieved from the database or created by your application.
So how about you split your problem into two parts: 1. How do I get my data and convert it to objects. 2. How do I display these objects with Tapestry. There is a number of choices for (1). The links I sent describe one of them - Cayenne object relational mapping. But you can simply use JDBC, hardcode a SQL query, read the result set into some Java objects that you define on your own... Do an Google search for JDBC-specific tutorials - there is nothing Tapestry specific in this... For (2), just look into existing Tapestry applications (like Hangman) and substitute the part that creates in-memory data objects with a JDBC call above. Andrus > Hello, > > Thanks for the links. > > I am new to this, and these tutorials seem too much for me. > > I really just want a simple example for reading a database and > displaying records from within Tapestry. > > Regards, > > Frank --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
