Setting CLASSPATH

I set the CLASSPATH for JDBC connection. But it seems no to be working. How can i check that i set my CLASSPATH correctly.?Thankz
[143 byte] By [Sana_Boya] at [2007-11-27 6:27:39]
# 1

It depends on the JVM (the running Java environment) used.

If you run it as a Java Application from the commandline, use the environment variable $CLASSPATH. If you run it as a JAR file, then define it in the manifest.mf. If you run it in an IDE, then put the external JARs in the root of the project and/or define it in the "build path" of the project properties. If you run it as an webapplication in an application server, then put the external JARs in the WEB-INF/lib or in the application server /lib directory.

BalusCa at 2007-7-12 17:49:46 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
Run the following command.set CLASSPATHIs the JDBC driver JAR in the classpath?
dvohra09a at 2007-7-12 17:49:46 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...