英文:
Visual Studio connect to Azure SQL Database
问题
Azure SQL Database是SQL Server的云版本。
Add a connection to Azure SQL Database
在给定的演示中,这是一个C# Web应用程序。如何将其与C++项目连接起来?就像SSMS对SQL Server所做的那样?
英文:
Azure SQL Database is the cloud version of SQL Server.
Add a connection to Azure SQL Database
In the given demonstration, it's a C# WebApplication. How do I connect it with a C++ project? Like what SSMS does for SQL Server?
答案1
得分: 1
主要方法:
要将Azure SQL数据库连接到C++项目,请转到工具,选择“连接到数据库”选项。
提供Azure SQL服务器的所需详细信息并测试连接。在SQL服务器的网络选项卡中设置防火墙规则。
SQL数据库将成功连接。
次要方法:
要将Azure SQL数据库连接到C++项目,请转到工具,选择“添加SQL服务器”选项。
连接到您的Azure帐户,并根据下面的图像选择您的SQL数据库:
如果需要,设置防火墙规则。
SQL数据库将成功连接。
英文:
Primary method:
To connect Azure SQL database to C++ project Go to Tools select Connect to Database
option.
Provide the required details of Azure SQL server and test the connection. Set firewall rule in SQL server Networking tab.
The SQL database will connect successfully.
Secondary Method:
To connect Azure SQL database to C++ project Go to Tools select Add SQL Server
option.
Connect to your Azure account and select your SQL database as mentioned in the below image:
Set Firewall rule if needed.
The SQL database will connect successfully.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论