⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 doc.xml

📁 比较好的异步数据库访问示例
💻 XML
📖 第 1 页 / 共 5 页
字号:
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="commandParameters">an array of IDataParameters to be associated with the command or 'null' if no parameters are required</param>
            <param name="connectionOwnership">indicates whether the connection parameter was provided by the caller, or created by SqlHelper</param>
            <returns>IDataReader containing the results of the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteReader(System.String,System.Data.CommandType,System.String)">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="connectionString">a valid connection string for a connection yet to be opened</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <returns>a IDataReader containing the resultset generated by the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteReader(System.String,System.Data.CommandType,System.String,System.Data.IDataParameter[])">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="connectionString">a valid connection string for a connection yet to be opened</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="commandParameters">an array of IDataParameters used to execute the command</param>
            <returns>a IDataReader containing the resultset generated by the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteReader(System.String,System.String,System.Object[])">
            <summary>
            Execute a stored procedure via a command (that returns a resultset) against the database specified in 
            the connection string using the provided parameter values.  This method will query the database to discover the parameters for the 
            stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
            </summary>
            <param name="connectionString">a valid connection string for a connection yet to be opened</param>
            <param name="spName">the name of the stored procedure</param>
            <param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
            <returns>a IDataReader containing the resultset generated by the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteReader(System.Data.IDbConnection,System.Data.CommandType,System.String)">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="connection">a valid IDbConnection</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <returns>a IDataReader containing the resultset generated by the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteReader(System.Data.IDbConnection,System.Data.CommandType,System.String,System.Data.IDataParameter[])">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="connection">a valid IDbConnection</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="commandParameters">an array of parameters used to execute the command</param>
            <returns>a IDataReader containing the resultset generated by the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteReader(System.Data.IDbConnection,System.String,System.Object[])">
            <summary>
            Execute a stored procedure via a command (that returns a resultset) against the specified IDbConnection 
            using the provided parameter values.  This method will query the database to discover the parameters for the 
            stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
            </summary>
            <param name="connection">a valid IDbConnection</param>
            <param name="spName">the name of the stored procedure</param>
            <param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
            <returns>a IDataReader containing the resultset generated by the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteReader(System.Data.IDbTransaction,System.Data.CommandType,System.String)">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="transaction">a valid IDbTransaction</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <returns>a IDataReader containing the resultset generated by the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteReader(System.Data.IDbTransaction,System.Data.CommandType,System.String,System.Data.IDataParameter[])">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="transaction">a valid IDbTransaction</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="commandParameters">an array of IDataParameters used to execute the command</param>
            <returns>a IDataReader containing the resultset generated by the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteReader(System.Data.IDbTransaction,System.String,System.Object[])">
            <summary>
            Execute a stored procedure via a command (that returns a resultset) against the specified
            IDbTransaction using the provided parameter values.  This method will query the database to discover the parameters for the 
            stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
            </summary>
            <param name="transaction">a valid IDbTransaction</param>
            <param name="spName">the name of the stored procedure</param>
            <param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
            <returns>a IDataReader containing the resultset generated by the command</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteReader(System.String,System.Data.CommandType,System.String,System.AsyncCallback,System.Object)">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="connectionString">a valid connection string for a connection yet to be opened</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="ac">callback object containing a delegate</param>
            <param name="state">state object supplied by the client</param>
            <returns>asynchronous result object</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteReader(System.String,System.Data.CommandType,System.String,System.AsyncCallback,System.Object,System.Data.IDataParameter[])">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="connectionString">a valid connection string for a connection yet to be opened</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="ac">callback object containing a delegate</param>
            <param name="state">state object supplied by the client</param>
            <param name="commandParameters">an array of IDataParameters used to execute the command</param>
            <returns>asynchronous result object</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteReader(System.String,System.String,System.AsyncCallback,System.Object,System.Object[])">
            <summary>
            Execute a stored procedure via a command (that returns a resultset) against the database specified in 
            the connection string using the provided parameter values.  This method will query the database to discover the parameters for the 
            stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
            </summary>
            <param name="connectionString">a valid connection string for a connection yet to be opened</param>
            <param name="spName">the name of the stored procedure</param>
            <param name="ac">callback object containing a delegate</param>
            <param name="state">state object supplied by the client</param>
            <param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
            <returns>asynchronous result object</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteReader(System.Data.IDbConnection,System.Data.CommandType,System.String,System.AsyncCallback,System.Object)">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="connection">a valid IDbConnection</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="ac">callback object containing a delegate</param>
            <param name="state">state object supplied by the client</param>
            <returns>asynchronous result object</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteReader(System.Data.IDbConnection,System.Data.CommandType,System.String,System.AsyncCallback,System.Object,System.Data.IDataParameter[])">
            <summary>
            Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
            </summary>
            <param name="connection">a valid IDbConnection</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="ac">callback object containing a delegate</param>
            <param name="state">state object supplied by the client</param>
            <param name="commandParameters">an array of parameters used to execute the command</param>
            <returns>asynchronous result object</returns>
        </member>
        <member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteReader(System.Data.IDbConnection,System.String,System.AsyncCallback,System.Object,System.Object[])">
            <summary>
            Execute a stored procedure via a command (that returns a resultset) against the specified IDbConnection 
            using the provided parameter values.  This method will query the database to discover the parameters for the 
            stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
            </summary>
            <param name="connection">a valid IDbConnection</param>
            <param name="spName">the name of the stored procedure</param>
            <param name="ac">callback object containing a delegate</param>
            <param name="state">state object supplied by the client</param>
            <param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
            <returns>asynchronous result object</returns>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -