Question Portable MySQL Application?

stuntguy3000

New member
Joined
Sep 27, 2011
Messages
1
Programming Experience
3-5
Hello.
I would like to know how and if i can make a portable MySQL Application... What i mean by this is anyone on any Windows computer can use it and not need to install the MySQL Connector... Is their any way i can include the .dll connector into the app or have it along side it in the application folder?

Thanks
-stuntguy3000
 
Hello.
I would like to know how and if i can make a portable MySQL Application... What i mean by this is anyone on any Windows computer can use it and not need to install the MySQL Connector... Is their any way i can include the .dll connector into the app or have it along side it in the application folder?

Thanks
-stuntguy3000

check this if that is what you are looking for hxxp://portableapps.com/apps/development/xampp
 
There sure is. Just like any reference, you can select the MySql.Data reference and set its Copy Local property to True. The DLL will then be copied to the output folder along with your EXE when you build and you just deploy both.
 
Back
Top