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;
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM