sqlDataApter与sqlcommand的关系
时间:2011-03-03 来源:双魂人生
其实 数据库的连接是隐式的被打开的
SqlDataAdapter sqlDateAdapter = new SqlDataAdapter(sql语句,connection);
其实它是隐式的替代了下面的代码:
conn.Open();
SqlCommand cmd = new SqlCommand();
cmd.CommandText = "select * from googs";
cmd.CommandType = CommandType.Text;
cmd.Connection = conn;
SqlDataAdapter sqlDateAdapter = new SqlDataAdapter();
sqlDateAdapter.SelectCommand = cmd;
现在看出原因了吧!!
相关阅读 更多 +