Please tell me how can we attach SQL Server database (SQL Server 2005) during installation or after installation using c#.net (desktop application). We can create a form to get details of connection string (user id, pass, server name etc..) . please tell me how can we automatically attach database with SQL Server using .net
Share
Execute a full create database script with your tables, SPs etc. the same way you do any insert i.e. call
ExecuteNonQuerymethod.Is it what you were asking or you need something more?