📅  最后修改于: 2023-12-03 15:29:33.572000             🧑  作者: Mango
Azure SQL数据库是微软提供的云数据库服务,可用于托管关系型数据库。Azure SQL数据库支持多种数据库引擎,包括传统的SQL Server、MySQL和PostgreSQL,以及基于Azure的托管实例(Managed Instance)。
本文将介绍如何在Azure SQL数据库中进行配置。
string connectionString = "Server=<serverName>.database.windows.net;Database=<databaseName>;User ID=<username>@<serverName>;Password=<password>;Encrypt=true;Tr ustServerCertificate=false;";
SqlConnection connection = new SqlConnection(connectionString);
connection.Open();
string createTable = "CREATE TABLE [dbo].[mytable] ([id] INT NOT NULL PRIMARY KEY, [name] NVARCHAR(50) NOT NULL)";
SqlCommand command = new SqlCommand(createTable, connection);
command.ExecuteNonQuery();
通过以上介绍,我们了解了如何在Azure SQL数据库中进行配置,并实现了数据库的连接和配置。Azure SQL数据库是一种灵活、可靠的数据库服务,可以为应用程序提供高效和稳定的数据库支持。