我有以下连接字符串:
Data Source=localhost;UserID=root;Password=;Database=eyebus;
当我尝试连接到数据库时,我收到一条错误消息,说明可能找不到服务器或无法访问服务器。这个字符串有什么问题,?
我还尝试过我在互联网上找到的其他字符串/单词,但它们都没有真正起作用。
此外,问题不在于服务器,因为它可以被其他应用程序访问。
class SQLManager
{
private static string conString = ConfigurationManager.ConnectionStrings["DatabaseConnectionString"].ToString();
public List<PesquisaOcorrenciasExistentesModel> getOcorrencias()
{
List<PesquisaOcorrenciasExistentesModel> ocorrencias = new List<PesquisaOcorrenciasExistentesModel>();
using (SqlConnection con = new SqlConnection(conString))
{
try
{
con.Open();
}
catch (Exception e)
{
Debug.WriteLine(e.Message);
}
using (SqlCommand com = new SqlCommand("SELECT * FROM ocorrencias", con))
{
SqlDataReader reader = com.ExecuteReader();
while (reader.Read())
{
PesquisaOcorrenciasExistentesModel o = new PesquisaOcorrenciasExistentesModel();
o.IdOcorrencia = reader.GetInt16(0);
o.IdOcorrenciaTipo = reader.GetInt16(1);
o.DataInicio = reader.GetDateTime(2);
o.DataFim = reader.GetDateTime(3);
o.Operador = reader.GetString(4);
o.Motorista = reader.GetString(5);
o.Cobrador = reader.GetString(6);
o.Terceiros = reader.GetString(7);
o.Descricao = reader.GetString(8);
o.EmailsEnviados = reader.GetString(9);
o.TipoOcorrenciaOutro = reader.GetString(10);
ocorrencias.Add(o);
}
}
}
return ocorrencias;
}
}
}
答案 0 :(得分:2)
尝试使用Server
代替数据源,使用UID
代替UserID。
或查看此信息,了解更多信息:How to form a correct MySQL connection string?
此外,您不需要使用:
ConfigurationManager.ConnectionStrings["DatabaseConnectionString"].ConnectionString
并且,SqlConnection
,SqlDataReader
和SqlCommand
用于Micrsoft SQL。我相信您应该使用MySqlConnection
,MySqlDataReader
和MySqlCommand
。
看看:http://www.codeproject.com/Articles/43438/Connect-C-to-MySQL