连接到本地计算机上的.mdf数据库

时间:2018-11-10 17:58:01

标签: c# sql-server database mdf

我正在使用SQL Server .mdf数据库文件创建C#应用程序。我需要将其安装在用户的计算机上,但是在连接数据库时遇到问题,该计算机没有SQL Server。

系统将仅在本地计算机上。

连接到我的.mdf数据库文件的最佳选择是什么?

连接到数据库:

public Banco()
{
    string Caminho = Directory.GetParent(Directory.GetCurrentDirectory()).Parent.FullName + @"\AppData\Banco.mdf";

    string sStringConexao = @"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=" + Caminho + ";Integrated Security=True";

    _conexao = new SqlConnection(sStringConexao);
    _comando = new SqlCommand();
    _comando.Connection = _conexao;
}

0 个答案:

没有答案