CommandType.Text
CommandType.Text:代表执行的是SQL语句
CommandType.StoreProcedure:代表执行的是存储过程
CommandType:代表要执行的类型
//返回DataTable的SQL执行
public DataTable ExecuteDataTable(string cmdText) { DataTable dt = new DataTable(); SqlConnection conn = new SqlConnection(connStr); SqlDataAdapter apt = new SqlDataAdapter(cmdText, conn); apt.SelectCommand.CommandType = CommandType.Text; try { apt.Fill(dt); } catch(Exception exp) { throw exp; } finally { if(conn.State == ConnectionState.Open) conn.Close(); } return dt; }
人各有命,上天注定,有人天生为王,有人落草为寇。脚下的路,如果不是你自己的选择,那么旅程的终点在哪,也没人知道。你会走到哪,会遇到谁,都不一定。