How to create a database setup

how to create a database setup. I have a windows application in C # .net. I can create my application setup in vs2008, but I want to create a MySql database server setup for multiple clients of my application. Please help me...

+2


a source to share


2 answers


Setting up mySQL database

http://developedtraffic.com/resources/mysql-database.php

How to set up a MySQL database

http://www.webwisesage.com/addons/free_ebook.html

Database setup for MySQL - Confluence Docs 3.2 - Atlassian ...



http://confluence.atlassian.com/display/DOC/Database+Setup+For+MySQL

MySQL Tutorial - Setup

http://www.tizag.com/mysqlTutorial/mysqlsetup.php

i Think these links will help you

+1


a source


2 Basic steps should be followed:

  • MySQL must be installed on the client
  • Your database should be created.

For step 2, I recommend creating your database script in an "inital" state, or nevertheless your client expects the database to be when they start using your application.



You might be able to use the Visual Studio SQL Database Publishing Wizard to automatically generate a script that will create your database http://blogs.msdn.com/b/webdevtools/archive/2007/10/15/sql-database-publishing-wizard -is-now-in-visual-studio-orcas.aspx

You can instruct your client to run the .sql script, or you can call mysql from the command line to run the script as part of the installer.

I did a similar procedure with SQL Server applications, so I expect this to work similarly

0


a source







All Articles