deployment using sqlserver and c#
-
i want to create a setup file. i used sqlserver 2005 as backend and c# as frontend.Now i want to create a setup file, i have created tables in sqlserver and creating setup file in vs 2005, how do the tables from sqlserver will be created when creating setup file in visual studio 2005 .
-
i want to create a setup file. i used sqlserver 2005 as backend and c# as frontend.Now i want to create a setup file, i have created tables in sqlserver and creating setup file in vs 2005, how do the tables from sqlserver will be created when creating setup file in visual studio 2005 .
you can write your custom code for doing this things during installation of your application.
cheers, Abhijit My Recent Article : Beginner's Guide to ASP.NET Application Folder
-
i want to create a setup file. i used sqlserver 2005 as backend and c# as frontend.Now i want to create a setup file, i have created tables in sqlserver and creating setup file in vs 2005, how do the tables from sqlserver will be created when creating setup file in visual studio 2005 .
You can export the structure of your SQL DB to SQL queries (like CREATE TABLE) etc., and execute those queries during the first start of your application, after the install. One tool to export the db structure is EMS Data Export for SQL Server link[^]. This is a part of EMS SQL Management Studio for SQL Server