0

I want to Create .exe File for devolop for Java application by Using Netbeans and MySQL , I know to Create but I have Problem with MySql , How do i put My Sql Data base to .exe file Please Help me

Code_Tesh
  • 33
  • 2
  • 7

2 Answers2

1

If you develop a Java application, the standard is to create a .jar not a .exe. If you want to create a platform dependent .exe either use another language like C++, or look into tools like explained in the answers to this question.

Community
  • 1
  • 1
Axel
  • 13,939
  • 5
  • 50
  • 79
0

As I know, MySQL doesn't support embedded problems. You have to run it as a independent component of your system.

If your really need the DB come along with your application, you can try SQLite https://sqlite.org/ or BekelyDB.

For more information, take a look at this to have more detail http://en.wikipedia.org/wiki/Embedded_database

Hope this help.

simpletron
  • 739
  • 4
  • 14