C#组成的Mono项目是否可以连接AzureSql数据库?
Is it possible to connect the Azure Sql database on Mono project consisting of C #?
我正在开发单声道项目 C# 控制台应用程序,我需要连接 Azure Sql 数据库服务。
我编写了这段代码,这发生了异常 "NotImplement Exception"。
我试图找到解决方案。但它没有实现 SSL 加密。
这现在解决问题了吗?
using System;
using System.Data;
using System.Data.SqlClient;
using Mono.Security;
namespace AzureConsoleApplication
{
class MainClass
{
public static void Main (string[] args)
{
Console.WriteLine ("Hello World!");
string connectionString = "Server=tcp:Server.database.windows.net,1433;Database=TestDatabase;" +
"User ID=ID@Servername;Password=password;" +
"Trusted_Connection=False;Encrypt=true;Connection Timeout=30;";
IDbConnection dbcon;
using (dbcon = new SqlConnection(connectionString))
{
dbcon.Open ();
using (IDbCommand dbcmd = dbcon.CreateCommand())
{
string sql = "SELECT * FROM MyTable1;";
dbcmd.CommandText = sql;
using (IDataReader reader = dbcmd.ExecuteReader())
{
while (reader.Read())
{
string first = (string)reader ["ID"];
string twice = (string)reader ["Col1"];
Console.WriteLine ("ID : " + first + "Col1 : " + twice);
}
}
}
}
}
}
}
最后我检查了 Mono 不支持 SSL 连接到 SQL 数据库。
这是一个严重的黑客攻击,但在我现在的公司,我们在本地 SQL 服务器上创建了一个链接服务器,然后通过它进行数据库调用路由。
有趣的是 node.js 的 SQL 客户端确实支持 SSL。 =)
我正在开发单声道项目 C# 控制台应用程序,我需要连接 Azure Sql 数据库服务。 我编写了这段代码,这发生了异常 "NotImplement Exception"。 我试图找到解决方案。但它没有实现 SSL 加密。 这现在解决问题了吗?
using System;
using System.Data;
using System.Data.SqlClient;
using Mono.Security;
namespace AzureConsoleApplication
{
class MainClass
{
public static void Main (string[] args)
{
Console.WriteLine ("Hello World!");
string connectionString = "Server=tcp:Server.database.windows.net,1433;Database=TestDatabase;" +
"User ID=ID@Servername;Password=password;" +
"Trusted_Connection=False;Encrypt=true;Connection Timeout=30;";
IDbConnection dbcon;
using (dbcon = new SqlConnection(connectionString))
{
dbcon.Open ();
using (IDbCommand dbcmd = dbcon.CreateCommand())
{
string sql = "SELECT * FROM MyTable1;";
dbcmd.CommandText = sql;
using (IDataReader reader = dbcmd.ExecuteReader())
{
while (reader.Read())
{
string first = (string)reader ["ID"];
string twice = (string)reader ["Col1"];
Console.WriteLine ("ID : " + first + "Col1 : " + twice);
}
}
}
}
}
}
}
最后我检查了 Mono 不支持 SSL 连接到 SQL 数据库。
这是一个严重的黑客攻击,但在我现在的公司,我们在本地 SQL 服务器上创建了一个链接服务器,然后通过它进行数据库调用路由。
有趣的是 node.js 的 SQL 客户端确实支持 SSL。 =)