Zahid, Butt

Ranch Hand
+ Follow
since Feb 16, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Zahid, Butt

Hi
I have a Servlet which requires a SQLJ program that does the
interaction with the Database. How do I incorporate the SQLJ program in the Servlet so that I can use its functions.

Thanks in advance.
23 years ago
Done that, but it still doesnt work.
Zahid.
23 years ago
Hi
The problem is, I am running my servlet using JSDK - the Servlet Runner and not a Web Server.
Any help ???

Thanks in advance.
23 years ago
Hi
Thanks for your answer. Compiling the file is not a problem, but when I run the file the following error message appears
"java.lang.NoClassDefFoundError: oralce/jdbc/driver/OracleDriver"
How do I sort this one out ??
Thanks in advance.

23 years ago
Hi
Thanks for your reply. Which directory in the classpath do I put the zip file, c: , d: ?
Please reply ASAP.
Thanks in advance.
23 years ago
Hi
How do I connect to the Oracle Database from my servlet ??
what import statements do I need. Where can I get hold of the
JDBC Thin Client Driver for free/ how do I install it ??

Thanks in advance.
23 years ago
Thanks Jamie.
Still a bit confused.
I'm trying to connect to Oracle Database from my machine which has Win95. From the URLs you sent me all drivers are for NT.
Any help ...
Thanks in advance.
Hi
I need a JDBC driver. I am testing a Servlet using Servlet Runner but dont have a JDBC driver. I have Windows 95 installed onto my machine.
Does anyone know where I can download one from, which one do I need. I think its the 'Thin' Driver.
Thanks in advance.
Hi
Bodie, could you please give me URL's that further explain your comments.
Thanks.
23 years ago
Hi
Thanks for the URL Dmitriy.
Anyone else got any good URL's fro Servlet programming ?
Zahid.
23 years ago
Hi
Does anyone know of a few websites which help developing
Servlets ??
I only know of Sun's web site.
Thanks in advance.

23 years ago
Hi
What is Swing ?
The GUI will be run from Oracle 8i, will Swing be compatible
or will I need an add-on.
Thanks, Zahid.
23 years ago
Hi
I have the following code :
import java.awt.*;
public class TestFlow extends Frame {
public static void main(String args[]) {
Panel p = new Panel();
Button b = new Button("NORTH");
Button b1 = new Button("SOUTH");
Button b2 = new Button("CENTER");
TestFlow t = new TestFlow();
t.setSize(450,450);
t.setVisible(true);
t.add(p);
p.add(b);
p.add(b1);
p.add(b2);
}
}
How do I maximise the panel to be the size of my Monitor screen ?

Thanks in advance.
23 years ago
Hi
I am new to Java and want to write a java program which, when run, will produce a HTML page (HTML form).
How is this done, what is the technology ??
Thanks in advance.
23 years ago
Hi
How do you create a GUI front end in Java, for example a
menu screen to a system. I have jdk1.2. I will not be using anthing other than my text editor to write the code and the JDK.

Thanks in advance.
23 years ago