Does Install4J has the feature of installing MySQL 5.0 and the database i have created ,for my Java Application on windows which is developed in Netbeans IDE Utimately what i need is an .exe of my Java Application which is in Netbeans IDE and Installer that installs my Application into the clients system and the database created in MySQl . Please Help with this
How to package MySQL with the Install4j does Install4j has the facility of creating Installers that can also install MYSQL
829 Views Asked by user2200561 At
2
There are 2 best solutions below
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in INSTALL4J
- Install4j Not delete file
- Install4j sometimes blocks on upgrade in the uninstall section
- Does Install4j support code signing using Azure Key Vault?
- Wait for termination - Install4j
- install4j- read license value instead of connection to the license server
- Sometimes install4j launcher does not start
- install4j After installation application doesn't run
- How to monitor console logs for application installed with install4j?
- Install4j Validation Script works incorrect
- Set VM Option if it isn't empty
- install4j Add VM option from installer's input value
- How is it possible to keep install4j logs for cancelled installations by default?
- Disabling Text Field in install4j
- install4j install additional packages for different Linux families
- Adding a new language to install4j
Related Questions in MYSQL-5.0
- Matching Arrival & Departures from long GPS data (long data to wide data)
- Which version of Java is compatible with JDBC 3.0 (MySQL 5.0)
- Deadlocks happened when massive inserting executed simultaneously in mysql 5.0
- Upgraded MySql from 5.0 to 5.6 and joomla site will not load
- I tried to connect my SpringBoot application with MySQL database in localhost. but it's showing this error. (my MySQL version is 5.0)
- Cannot start tomcat on port 8080
- Syntax Error with ASC, DESC with MySQL 8.0
- How to remove special characters in column with MySQL?
- Delete records that older some days, but if it delete all, keep last 20 records
- mysql_error(): supplied argument is not a valid MySQL-Link resource
- Moving from a database written in mysql 5.5 to one written in mysql 5.0
- MySQL NEW keyword
- When i run the below query in MySQL 5.6 it shows 141000 records. but when i run this on MySQL 5.0 it fetches only 91 records
- Python Coding in Blender
- How to drop a composite MySQL constraint and/or one column used in the constraint? (Allowing for limitations described.)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You could do this as part of a custom script to be run as part of your install but most likely you'd have to tailor it to each target environment. It would probably be a bit messy though as the installation process would vary wildly from Windows, to OSX, to Linux (and different Linux distros). Also, you'd have to deal with overwriting existing installations.
If you're code is database agnostic consider using something like http://www.h2database.com/html/main.html. It's pure Java (nothing to install besides adding JARs to your app), runs both in memory and persistent to disk, and feature rich. It would be much easier to deploy as you could have it save the database data in your apps install directory.