我是ASP.NET Web开发人员。我创建了一个Windows应用程序,用于从SQL Server检索数据。这是我的应用程序配置和类文件,用于从SQL Server检索数据:
App.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
<appSettings>
</appSettings>
<connectionStrings>
<add name="ConnString" connectionString="Data Source=INFY\SQLEXPRESS;Initial Catalog=NEWBULKSMS;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>
尝试连接到SQL Server的代码
using System;
using System.Collections.Generic;
using System.Collections;
using MySql.Data.MySqlClient;
using System.Data;
using System.Data.SqlClient;
using System.Windows.Forms;
public class Mysql
{
public static string ConString = System.Configuration.ConfigurationManager.AppSettings.Get("ConnString");
public static string InsertResult = "0";
private static Hashtable paramCache = Hashtable.Synchronized(new Hashtable());
private static MySqlParameter[] DiscoverSpParameterSet(string spName, bool includeReturnValueParameter)
{
using (MySqlConnection cn = new MySqlConnection(Mysql.ConString))
{
using (MySqlCommand cmd = new MySqlCommand(spName, cn))
{
cn.Open();
cmd.CommandType = CommandType.StoredProcedure;
MySqlCommandBuilder.DeriveParameters(cmd);
MySqlParameter[] discoveredParameters = new MySqlParameter[cmd.Parameters.Count]; ;
cmd.Parameters.CopyTo(discoveredParameters, 0);
return discoveredParameters;
}
}
}
}
连接到SQL Server数据库是否正确?
答案 0 :(得分:4)
您的连接字符串看起来不错,但是您的代码正在尝试使用MySql类连接到SQL Server。错了应当使用MySqlConnection
代替SqlConnection
,而不要使用MySqlCommand
-SqlCommand
等等。
以MySql
开头的所有类都属于MySql.Data.MySqlClient
命名空间,旨在与MySql一起使用。
要使用Sql Server,您需要使用以Sql
开头并属于System.Data.SqlClient
命名空间的类。
我将从删除代码顶部的using MySql.Data.MySqlClient;
行开始,然后通过将MySql类替换为Sql Server类来修复所有编译错误。
答案 1 :(得分:0)
像下面这样更改连接字符串,您必须将MySql更改为SQL,然后使用System.Data.SqlClient添加,这要使用已经在项目中添加的MySql.Data.MySqlClient。 ........
public static string connectionString = WebConfigurationManager.ConnectionStrings["ConnString"].ConnectionString;
public static string InsertResult = "0";
private static Hashtable paramCache = Hashtable.Synchronized(new Hashtable());
private static SqlParameter[] DiscoverSpParameterSet(string spName, bool includeReturnValueParameter)
{
using (SqlConnection sqlConnection = new SqlConnection(connectionString))
{
using (SqlCommand command = new SqlCommand(spName, sqlConnection))
{
connection.Open();
command.CommandType = CommandType.StoredProcedure;
SqlCommandBuilder.DeriveParameters(command);
SqlParameter[] discoveredParameters = new SqlParameter[cmcommandd.Parameters.Count];
discoveredParameters=command.ExecuteNonQuery();
ccommandn.Close();
return discoveredParameters;
}
}
}