Connecting to sql server database mdf file without installing sql server on client machine?

后端 未结 4 914
时光说笑
时光说笑 2020-12-06 05:24

I am creating a window application that need to use sql server database. I want to install this application to client machine without installing sql server so that my appli

4条回答
  •  感动是毒
    2020-12-06 05:37

    .mdf files are SQL Server database files. No other application can understand, read or update those files. If you need to open and mdf, you need a SQL instance. That instance can be local, can be an Express edition, or can be a remote one, doesn't matter. If your application needs a local SQL instance for it's own use then it can install SQL Server Express Edition when deployed.

提交回复
热议问题