string connectionString = "server=192.168.1.205;initial
Catalog=finehome;uid=edgar;password=julie;database=WHMS_S",
CommandType.Text, "Select * from GERINFOS";
using (System.Data.SqlClient.SqlConnection cn = new
System.Data.SqlClient.SqlConnection(connectionString))
{
try
{
cn.Open();
}
catch(Exceptio se)
{
MessageBox.Show(se.ToString());
}
---> cn.Open() has a problem.Quote:}
please give me some hints.
thank you.