📄 microsoft.practices.enterpriselibrary.data.xml.svn-base
字号:
<para>Loads a <see cref="T:System.Data.DataSet"/> from command text.</para>
</summary>
<param name="commandType">
<para>One of the <see cref="T:System.Data.CommandType"/> values.</para>
</param>
<param name="commandText">
<para>The command text to execute.</para>
</param>
<param name="dataSet">
<para>The <see cref="T:System.Data.DataSet"/> to fill.</para>
</param>
<param name="tableNames">
<para>An array of table name mappings for the <see cref="T:System.Data.DataSet"/>.</para>
</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.LoadDataSet(System.Data.Common.DbTransaction,System.Data.CommandType,System.String,System.Data.DataSet,System.String[])">
<summary>
<para>Loads a <see cref="T:System.Data.DataSet"/> from command text in a transaction.</para>
</summary>
<param name="transaction">
<para>The <see cref="T:System.Data.IDbTransaction"/> to execute the command in.</para>
</param>
<param name="commandType">
<para>One of the <see cref="T:System.Data.CommandType"/> values.</para>
</param>
<param name="commandText">
<para>The command text to execute.</para>
</param>
<param name="dataSet">
<para>The <see cref="T:System.Data.DataSet"/> to fill.</para>
</param>
<param name="tableNames">
<para>An array of table name mappings for the <see cref="T:System.Data.DataSet"/>.</para>
</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteDataSet(System.Data.Common.DbCommand)">
<summary>
<para>Executes the <paramref name="command"/> and returns the results in a new <see cref="T:System.Data.DataSet"/>.</para>
</summary>
<param name="command"><para>The <see cref="T:System.Data.Common.DbCommand"/> to execute.</para></param>
<returns>A <see cref="T:System.Data.DataSet"/> with the results of the <paramref name="command"/>.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteDataSet(System.Data.Common.DbCommand,System.Data.Common.DbTransaction)">
<summary>
<para>Executes the <paramref name="command"/> as part of the <paramref name="transaction"/> and returns the results in a new <see cref="T:System.Data.DataSet"/>.</para>
</summary>
<param name="command"><para>The <see cref="T:System.Data.Common.DbCommand"/> to execute.</para></param>
<param name="transaction">
<para>The <see cref="T:System.Data.IDbTransaction"/> to execute the command within.</para>
</param>
<returns>A <see cref="T:System.Data.DataSet"/> with the results of the <paramref name="command"/>.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteDataSet(System.String,System.Object[])">
<summary>
<para>Executes the <paramref name="storedProcedureName"/> with <paramref name="parameterValues"/> and returns the results in a new <see cref="T:System.Data.DataSet"/>.</para>
</summary>
<param name="storedProcedureName">
<para>The stored procedure to execute.</para>
</param>
<param name="parameterValues">
<para>An array of paramters to pass to the stored procedure. The parameter values must be in call order as they appear in the stored procedure.</para>
</param>
<returns>
<para>A <see cref="T:System.Data.DataSet"/> with the results of the <paramref name="storedProcedureName"/>.</para>
</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteDataSet(System.Data.Common.DbTransaction,System.String,System.Object[])">
<summary>
<para>Executes the <paramref name="storedProcedureName"/> with <paramref name="parameterValues"/> as part of the <paramref name="transaction"/> and returns the results in a new <see cref="T:System.Data.DataSet"/> within a transaction.</para>
</summary>
<param name="transaction">
<para>The <see cref="T:System.Data.IDbTransaction"/> to execute the command within.</para>
</param>
<param name="storedProcedureName">
<para>The stored procedure to execute.</para>
</param>
<param name="parameterValues">
<para>An array of paramters to pass to the stored procedure. The parameter values must be in call order as they appear in the stored procedure.</para>
</param>
<returns>
<para>A <see cref="T:System.Data.DataSet"/> with the results of the <paramref name="storedProcedureName"/>.</para>
</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteDataSet(System.Data.CommandType,System.String)">
<summary>
<para>Executes the <paramref name="commandText"/> interpreted as specified by the <paramref name="commandType"/> and returns the results in a new <see cref="T:System.Data.DataSet"/>.</para>
</summary>
<param name="commandType">
<para>One of the <see cref="T:System.Data.CommandType"/> values.</para>
</param>
<param name="commandText">
<para>The command text to execute.</para>
</param>
<returns>
<para>A <see cref="T:System.Data.DataSet"/> with the results of the <paramref name="commandText"/>.</para>
</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteDataSet(System.Data.Common.DbTransaction,System.Data.CommandType,System.String)">
<summary>
<para>Executes the <paramref name="commandText"/> as part of the given <paramref name="transaction"/> and returns the results in a new <see cref="T:System.Data.DataSet"/>.</para>
</summary>
<param name="transaction">
<para>The <see cref="T:System.Data.IDbTransaction"/> to execute the command within.</para>
</param>
<param name="commandType">
<para>One of the <see cref="T:System.Data.CommandType"/> values.</para>
</param>
<param name="commandText">
<para>The command text to execute.</para>
</param>
<returns>
<para>A <see cref="T:System.Data.DataSet"/> with the results of the <paramref name="commandText"/>.</para>
</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteScalar(System.Data.Common.DbCommand)">
<summary>
<para>Executes the <paramref name="command"/> and returns the first column of the first row in the result set returned by the query. Extra columns or rows are ignored.</para>
</summary>
<param name="command">
<para>The command that contains the query to execute.</para>
</param>
<returns>
<para>The first column of the first row in the result set.</para>
</returns>
<seealso cref="M:System.Data.IDbCommand.ExecuteScalar"/>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteScalar(System.Data.Common.DbCommand,System.Data.Common.DbTransaction)">
<summary>
<para>Executes the <paramref name="command"/> within a <paramref name="transaction"/>, and returns the first column of the first row in the result set returned by the query. Extra columns or rows are ignored.</para>
</summary>
<param name="command">
<para>The command that contains the query to execute.</para>
</param>
<param name="transaction">
<para>The <see cref="T:System.Data.IDbTransaction"/> to execute the command within.</para>
</param>
<returns>
<para>The first column of the first row in the result set.</para>
</returns>
<seealso cref="M:System.Data.IDbCommand.ExecuteScalar"/>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteScalar(System.String,System.Object[])">
<summary>
<para>Executes the <paramref name="storedProcedureName"/> with the given <paramref name="parameterValues"/> and returns the first column of the first row in the result set returned by the query. Extra columns or rows are ignored.</para>
</summary>
<param name="storedProcedureName">
<para>The stored procedure to execute.</para>
</param>
<param name="parameterValues">
<para>An array of paramters to pass to the stored procedure. The parameter values must be in call order as they appear in the stored procedure.</para>
</param>
<returns>
<para>The first column of the first row in the result set.</para>
</returns>
<seealso cref="M:System.Data.IDbCommand.ExecuteScalar"/>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteScalar(System.Data.Common.DbTransaction,System.String,System.Object[])">
<summary>
<para>Executes the <paramref name="storedProcedureName"/> with the given <paramref name="parameterValues"/> within a
<paramref name="transaction"/> and returns the first column of the first row in the result set returned by the query. Extra columns or rows are ignored.</para>
</summary>
<param name="transaction">
<para>The <see cref="T:System.Data.IDbTransaction"/> to execute the command within.</para>
</param>
<param name="storedProcedureName">
<para>The stored procedure to execute.</para>
</param>
<param name="parameterValues">
<para>An array of paramters to pass to the stored procedure. The parameter values must be in call order as they appear in the stored procedure.</para>
</param>
<returns>
<para>The first column of the first row in the result set.</para>
</returns>
<seealso cref="M:System.Data.IDbCommand.ExecuteScalar"/>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteScalar(System.Data.CommandType,System.String)">
<summary>
<para>Executes the <paramref name="commandText"/> interpreted as specified by the <paramref name="commandType"/> and returns the first column of the first row in the result set returned by the query. Extra columns or rows are ignored.</para>
</summary>
<param name="commandType">
<para>One of the <see cref="T:System.Data.CommandType"/> values.</para>
</param>
<param name="commandText">
<para>The command text to execute.</para>
</param>
<returns>
<para>The first column of the first row in the result set.</para>
</returns>
<seealso cref="M:System.Data.IDbCommand.ExecuteScalar"/>
</member>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -