• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Deploying / Exporting and running Java

 
Ranch Hand
Posts: 61
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have developed a Java application using MySQL and using VisualAge 2.0. I have been able to export the .jar file and run that from a DOS window, however that is a nuissance because the DOS window stays open when the application is running. Is there a way of running the application outside of VAJ so that you don't have the DOS window open?
A follow up to that... if anyone knows how to export a MySQL database so I don't have to install the whole database onto the client machine, that would be GREAT too!
Thanks!
[ August 26, 2002: Message edited by: Brett Swift ]
 
"The Hood"
Posts: 8521
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You will want to be careful about that DOS window stuff. There is a javaw.exe that used to invoke java without that annoying window - but then there is nowhere to write console messages to . They ended up putting the DOS window BACK in javaw.exe, but making it so that the user can close it if they want. Then you just deploy it with the DOS window minimized.
Not a clue about MySQL.
 
reply
    Bookmark Topic Watch Topic
  • New Topic