以下两者有和区别??代码一:SqlCommand cmd = this.con.CreateCommand(); cmd.CommandText = sql;代码二:SqlCommand cmd = new SqlCommand(sql);这两种执行起来,哪一种会更好呀? Why??[解决办法]