SqlDataAdapter adapter = new SqlDataAdapter();
SqlCommand command = new SqlCommand(strsql,con);
command.Parameters.Add("@Company",SqlDbType.VarChar,100);
adapter.SelectCommand = command;这段代码的意思,能解释下? 谢谢