7

Is they any wix command I can use to create database and to also add a user to the database? If yes, is there any example on how to do this?

Ivaylo Slavov
  • 8,839
  • 12
  • 65
  • 108
user966511
  • 83
  • 5

2 Answers2

3

I would recommend you try the following:

  1. Create your sql database using techniques mentioned here: Wix: create a sql server database at a specified location

  2. Create a user via SQL: http://msdn.microsoft.com/en-us/library/ms173463.aspx

  3. Run your sql via wix using: http://nicholas.piasecki.name/blog/2009/09/running-update-sql-scripts-during-minor-upgrades-with-wix/
Community
  • 1
  • 1
Dessus
  • 2,147
  • 1
  • 14
  • 24
1

Check out the SQL extension here.

You'll need to add a reference to it in your installer project, an example of this can be found here.

Daniel Morritt
  • 1,787
  • 17
  • 25