"Create Table tabel(…)"这样的SQL语句在SqlCommand中可以用吗?若可以,如何用?string strCnn = "server='ls'; user id='ls'; password=2094; database='LS'";
string strCmm = "Create Table tempTable (name varchar(50), age int, date date)";
SqlConnection cnn = new SqlConnection(strCnn);
SqlCommand cmm = new SqlCommand(strCmm, cnn);然后是什么……