本文介绍了如何在窗口应用程序中远程使用SQL Server数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个应该在局域网上运行的软件。应该使用位于服务器系统上的数据库,这样可以使分布式软件正常工作。



我尝试过的方法:



< connectionstrings>

< add name =ConnectionString>

connectionString =Data Source = .\sqlexpress; Initial Catalog = MemberDB; Integrated Security = True; Pooling = False providerName =System.Data.SqlClient/>

I create a software that should work on a LAN. The database located on the server system should be used so that this can be distributed software working.

What I have tried:

<connectionstrings>
<add name="ConnectionString">
connectionString="Data Source=.\sqlexpress;Initial Catalog=MemberDB;Integrated Security=True;Pooling=False" providerName="System.Data.SqlClient"/>

推荐答案


这篇关于如何在窗口应用程序中远程使用SQL Server数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 20:25