JDBC and servelets

i have a problem with manipulating database using JDBC (Update) and to use servelets to manipulate the inteface and make it communicate with the database.
[161 byte] By [za_zaa] at [2007-10-3 9:45:36]
# 1
Okay. And...?
jverda at 2007-7-15 5:02:17 > top of Java-index,Java Essentials,Java Programming...
# 2

> i have a problem with manipulating database using

> JDBC (Update) and to use servelets to manipulate the

> inteface and make it communicate with the database.

Two separate things entirely. Tackle them one at a time.

Start with the JDBC class. Write the code to work with the database and get it working perfectly on the command, without a servlet in sight.

Once that's perfect, create the servlet and let it instantiate an instance of your database class and call its methods to work with the database. Sort out all your deployment issues knowing that the database code has been thoroughly tested already.

%

duffymoa at 2007-7-15 5:02:17 > top of Java-index,Java Essentials,Java Programming...