Eclipse Execution
Hi all,
I managed to write a piece of code which requires the use of 3 jar files which are in a folder called "lib" in the same folder of the class file.
The only way to execute this file is by using the command prompt and the command I use is
java -classpath ".;./lib/file1.jar;./lib/file2.jar;./lib/file3.jar" DBTest
Could someone kindly tell me how I can add those 3 files in eclipse so I can execute from within eclipse and stop using cmd?
THANKS ALL :)

