请教高手:我用vs2005和sql 2005开发的windows应用程序如何制作安装程序(打包)?
如题,数据库如何打包进去?在另外一台机器上需要安装哪些文件?谢谢~~~~~~~~~~~~~~~
------解决方案--------------------
在安装部署里
添加“项目输出”,选择主输出和内容文件,确定后即产生“主输出来自(活动)”的字样,同时具有相关的依赖项文件。
通过执行SQL脚本配置数据库
private void ExecuteSql(string DatabaseName , string Sql)
{
SqlConnection sqlConnection1 = new SqlConnection("user id=" + strUser + ";password="+strPass+";database=master;server=(local)") ;
SqlCommand Command = new SqlCommand(Sql, sqlConnection1);
Command.Connection.Open();
Command.Connection.ChangeDatabase(DatabaseName);
try
{
Command.ExecuteNonQuery();
}
catch(Exception ex)
{
throw ex;
}
finally
{
Command.Connection.Close();
}
}
安装部署