Do I have to install sql server on each client if my software uses it?

前端 未结 4 1232
独厮守ぢ
独厮守ぢ 2020-12-14 04:19

If we develop some software in c# (or basically .Net), we don\'t install visual studio to any client. The client just have to have required .Net framework (1.0, 1.1, 2.0, 3.

4条回答
  •  爱一瞬间的悲伤
    2020-12-14 04:45

    There is no client runtime required for database access besides the .NET framework installed (which you need for all .NET executables anyway).

    If you want the database to reside on the same machine as the client free options would be e.g. SQL Server Express or SQLite.

提交回复
热议问题