Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need step by step instructions. I have downloaded if from the mysql website http://dev.mysql.com/usingmysql/java/

But now I am not to sure what to do from here? I'm sort of stuck..

share|improve this question

1 Answer

up vote 2 down vote accepted

Just put the JAR file in the runtime classpath. This is not environment-dependent.

How exactly to do that depends on what kind of application it is. If it's for example a plain vanilla Java application which you execute by java.exe, then use the -cp argument to specify the classpath.

java -cp .;/path/to/mysql.jar com.example.Foo

The classpath is basically a collection of paths to JAR files and/or .class files where Java should look for class definitions.

See also:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.