Try the followings:
 
Class.forName("oracle.jdbc.driver.OracleDriver");
conn = DriverManager.getConnection("jdbc:oracle:oci8:@", "Your_name", "PW");
stmt=conn.createStatement();
ResultSet myResults=null;
String theQuery ="select * from customers where Customer_id="+custid;
myResults = stmt.executeQuery(theQuery);
 
Hope this give you help
 
Mark
-----Original Message-----
From: Kerem �KTEM [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 18, 2000 12:23 PM
To: [EMAIL PROTECTED]
Subject: really an urgent problem to be solved

hi there,
i need urget help really that's really urgent.
we have to develop a servlet that takes parameters from another servlet.
and if it's possible for you (by the way if you have one) can you send me a sample method to write in an access table.
e.q the tble is like this
Member-ID    Nickname     Name     Surname
 
in the same method i want to insert in each place with a new user.
 
kerem
 

Reply via email to