Click to See Complete Forum and Search --> : Database connect recordset


October 7th, 1999, 02:07 PM
How is it possible to connect to a Oracle database in Visual J++ 6.0 ?
Where can i set the classpath for the Oracle driver ?

How could i show recordsets from the database in a webpage in a simple table ?

Please can anybody HEEEELLLLPPPPP ME !!!!!

poochi
October 7th, 1999, 02:54 PM
> How is it possible to connect to a Oracle database in Visual J++ 6.0 ?

Oracle 8.0 has comeup with a jdbc driver. If you check Oracle sample codes , you will
find an example of how to use that driver.

> How could i show recordsets from the database in a webpage in a simple table ?

Open a connection , create SQLStatement , call executeQuery and manipulate with the
returned ResultSet.( Use RMI for applet(client) - application(server) communication )

Poochi.