How to configure my DataBase Tables to my Submit Action Form

I am following the Studio creator lessons. Its really very time saving by using the IDE. I am developing an Submit Action Form where this form contains fields like username,password,dateofbirth,adress and simply like an Bio data. So what ever i enter in that jsp page, that data must be updated to the database by clicking SUBMIT button and it should reset the fields to default by clicking RESET button. So i have created that table and added that source as reference to my project upto that its fine. In chapter 9 of Studio creator lesson they said simply to drag the table from onto the table which is available in page canvas. But in my application i wont create a table in JSP page, all fields are seperately embedded in JSP page. What to do in this case? Please help me out in solving regarding this? If possible suggest me any reference example application in step to step process?

Thanking You.

[916 byte] By [Srinivasan1983] at [2007-11-26 11:39:21]
# 1
This might be what you are looking for. http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/ins erts_updates_deletes.htmlLet me know if you still ned help. In the meantime, I will shoot an email to our docs.
joejoes75 at 2007-7-7 11:39:53 > top of Java-index,Development Tools,Java Tools...
# 2

Hello,

You can follow section 9.7, which shows how to do database row inserts. In the example project,

all of the data for that table is displayed (which uses the table component).

You can skip the display part and just use textfield components for each of your fields.

You will still use a data provider, which Creator generates for you when you add the data source.

(See step 8 on page 412.) When you add the Data Source, you drop it on the canvas directly, since you won't be using a table component.

Follow the example code on p. 426-427 (Listing 9.7), which shows how to use the data provider to add a row to the data.

Hope this helps.

Gail Anderson

leucadiatech at 2007-7-7 11:39:53 > top of Java-index,Development Tools,Java Tools...