private void button2_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("server=LAPTOP-2DSNMHCM;Initial Catalog=test;Integrated Security=SSPI;");
string sql = "select * from test1";
SqlCommand cmd = new SqlCommand(sql, con);
con.Open();
SqlDataAdapter reader;
reader = cmd.ExecuteReader();
}
}
}
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 CS0029 无法将类型“System.Data.SqlClient.SqlDataReader”隐式转换为“System.Data.SqlClient.SqlDataAdapter” WindowsFormsApp1 F:\project\asp.net\test1\WindowsFormsApp1\Form1.cs 38 活动的
在线等 请大神回复