Home > Software engineering >  how to publish vb.net project with MySQL database on another computer
how to publish vb.net project with MySQL database on another computer

Time:12-16

I have an application using vb.net with MYSQL database in visual studio 2015 now i need to create a installation package to deploy the application to client computer.

I don't have any idea how to do this please anyone give tips how i can do this, im new with MYSQL.

CodePudding user response:

It depends, what technology are you using? If you are using entity framework you should have a .config file in your project, usually it's called app.Config, you can specify your <connectionStrings> there. Else if you use SqlConnection, you'll have to change that string.

  • Related