protected void Button1_Click1(object sender, EventArgs e)
{
SqlConnection cn;
string stronn="server=localhost;database="";uid=sa;pwd="";//这句是什么, 这样子编译能通过吗?!
1. 连接没打开.
2. 数据库连接串没有指明数据库, 你的字串从哪来的?!
{
SqlConnection cn;
string stronn="server=localhost;database="";uid=sa;pwd="";//这句是什么, 这样子编译能通过吗?!
cn=new SqlConnection(stronn);
SqlDateAdapter da=new SqlDataAdapter(select*from database);
DataSet ds=new DataSet();
}
1. 连接没打开.
2. 数据库连接串没有指明数据库, 你的字串从哪来的?!