如何使用 Visual C# 连接远程 SQL Server 数据库?
我正在创建一个 Windows 窗体应用程序,而我的 SQL Server 数据库位于远程服务器上。如何使用 Visual C# 和 ADO.NET 连接到它?
I am creating a Windows forms application and my SQL Server database is on a remote server. How can I connect to it using Visual C# and ADO.NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要研究 .NET 中的
SqlConnection
、SqlCommand
以及可能的SqlDataReader
和SqlDataAdapter
组件(请参阅 MSDN 在线文档)。完成后,您需要定义您的连接字符串 - 检查该站点链接以获取大量连接选择和解释字符串。
然后你基本上使用以下方式连接:
并且你可以通过各种方式做一些事情,例如通过填充数据集、读取值等。
阅读MSDN ADO.NET 概述 开始使用!或者通过 Google 搜索“ADO.NET 教程” - 您会发现大量链接。
You need to investigate the
SqlConnection
,SqlCommand
and possibleSqlDataReader
andSqlDataAdapter
components in .NET (see the MSDN online docs).Once you have that, you need to define your connection string - check that site link for a huge selection and explanation of connection strings.
Then you basically connect using:
and you can do stuff in various ways, e.g. by filling data sets, reading values etc.
Read the MSDN ADO.NET Overview to get started! Or Google for "ADO.NET tutorial" - you'll find tons of links.
答案可以在这里找到 -
使用 Visual C# 连接到远程 MySQL 数据库< /a>
另外,请从此处阅读并下载 -
http://dev.mysql.com/downloads/connector/net/5.2。 html
The answer can be found here -
Connect to remote MySQL database with Visual C#
Also, read up and download from here -
http://dev.mysql.com/downloads/connector/net/5.2.html
在 MS SQL Server 看来,SQL Server 位于何处并没有什么区别。您所需要的只是确保您可以通过 IP 和端口号访问该服务器。
In the eye of MS SQL Server it is no difference where your SQL Server is located. All you need is to make sure you have access that server in terms of IP and Port number.
使用以下代码创建必要的连接对象。
Use the below code to create the connection objects necessary.