gpt4 book ai didi

sql - 将 SQL 依赖项与 Azure 结合使用

转载 作者:行者123 更新时间:2023-12-05 04:05:51 26 4
gpt4 key购买 nike

在我的本地数据库中,Sql 依赖关系工作正常,但是当我迁移到 Azure 数据库时,它就不起作用了。

我检查服务代理是否已启用,并且它已激活。

这是错误:

此版本的 SQL Server 不支持语句“RECEIVE MSG”

这是我的代码:

     public class Program
{
static void Main(string[] args)
{
SqlClientPermission permission = new SqlClientPermission(System.Security.Permissions.PermissionState.Unrestricted);

if (SolicitarNotifications())
{
string con = "Server=tcp:xxxxx.database.windows.net,0000;Initial Catalog=TestSQLDependendcy;Persist Security Info=False;User ID=xxxx;Password=xxxxx;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;";
SqlConnection conn = new SqlConnection(con);
SqlDependency.Start(con);
Console.WriteLine("Empezando a escuchar");
GetAlerts();

Console.WriteLine("Presiona enter para salir");
Console.ReadLine();

Console.WriteLine("Deteniendo la escucha...");
SqlDependency.Stop(con);
}
else {
Console.WriteLine("No tienes permitido solicitar notificaciones");
}
}

public static void GetAlerts()
{
try
{
using (SqlConnection con = new SqlConnection("Server=tcp:xxxxx.database.windows.net,0000;Initial Catalog=TestSQLDependendcy;Persist Security Info=False;User ID={your_username};Password={your_password};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;"))
{
SqlCommand cmd = new SqlCommand("Select Correo, Nombre From TestNombre", con);
cmd.CommandType = CommandType.Text;
cmd.Notification = null;
cmd.Dispose();
SqlDependency dependency = new SqlDependency(cmd);
dependency.OnChange += new OnChangeEventHandler(OnDataChange);
con.Open();
SqlDataReader dr = cmd.ExecuteReader();
{
while (dr.Read())
{
if (dr.HasRows)
{
using (MailMessage mm = new MailMessage())
{
//Send Mails
}
}
}
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message.ToString());
}
}

private static void OnDataChange(object sender, SqlNotificationEventArgs e)
{

SqlDependency dependency = sender as SqlDependency;
dependency.OnChange -= new OnChangeEventHandler(OnDataChange);
GetAlerts();
}
}

如何在 Azure SQL 数据库中运行此服务?

最佳答案

目前,Azure SQL 不支持 Service Broker。

https://learn.microsoft.com/en-us/sql/t-sql/statements/receive-transact-sql?view=sql-server-2017 查找 RECEIVE 语句支持的版本,其中指出 Azure SQL 不支持它。

此外,本文档https://learn.microsoft.com/en-us/azure/sql-database/sql-database-features提供了 SQL Server、Azure SQL 和托管实例之间出色的功能比较文档。请注意,管理实例支持 Service Broker,但存在一些差异。我建议您注册预览版并尝试一下。

关于sql - 将 SQL 依赖项与 Azure 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50649248/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com