Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Who to execute without JBuilder ?

Status
Not open for further replies.

haux

Programmer
Apr 11, 2001
79
DZ
When i make a very simple prog with main JFrame+JTree+JToolBar with JBuilder4 prof,
i can run the prog with JBuilder shortcut F9 or from the parent directory in consol mode by typing :

#java pack.FrameMain

but when i add JDataStore i can get it runing by JBuilder chortcut 'F9', but never buy consol commande !!!

when i tape
#java pack.FrameMain

i get :

Exception in thread "main" java.lang.NoClassDefFoundError: com/borland/dx/sql/dataset/Database
at pack.FrameMain.<init>(FramePrincipale.java:34)
at pack.FrameMain.<init>(FramePrincipale.java:46)
at pack.FrameMain.<init>(clientrsfta.java:16)
at pack.FrameMain.main(clientrsfta.java:21)


Can somebody help me, i suppose i am missing something with libraries ??? !!!
 
I think that if you are attempting to run it from the command line, you 're going to have to place your new classes into the classpath.
Hope that helps,
GHalib
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top