I have created a java application in which i am using MySQL server. When I run project then three process start
- mysqld.exe
- java.exe
- FirstApplication.exe
I run MySQL server externally by executing mysqld process. But I want to merge process mysqld.exe in FirstApplication.exe process means when this FirstApplication.exe process starts then automatically internally mysqld.exe process should be start(run as one process). I want only 2 process in task manager
- java.exe
- FirstApplication.exe
I do not know is this possible or not? Please Suggest any answer.