Entradas

Mostrando las entradas etiquetadas como Instalar bases de datos SQL Server

Install SQL Server with c#

Yeah, this time this topic is in english. Microsoft create instructions to create an installer of a database using VB, but there is no documentation related to c#. http://msdn.microsoft.com/en-us/library/49b92ztk(v=VS.90).aspx To download the code click here This sample is using custom actions : namespace ClassLibrary1 {     [ RunInstaller ( true )]     public partial class crearBD : Installer     {         public crearBD()         {             InitializeComponent();         }         private string GetSql( string Name)         {             try             {     ...