Đang chuẩn bị liên kết để tải về tài liệu:
Getting Stored Procedure Parameter Information at Runtime

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

[ Team LiB ] Recipe 4.9 Getting Stored Procedure Parameter Information at Runtime Problem You want to get information about the parameters used by a stored procedure at runtime. Solution Use DeriveParameters( ) method of the CommandBuilder. | Team LiB Recipe 4.9 Getting Stored Procedure Parameter Information at Runtime Problem You want to get information about the parameters used by a stored procedure at runtime. Solution Use DeriveParameters method of the CommandBuilder. With Microsoft SQL Server you could also use system stored procedures. The sample code demonstrates either one of these techniques as specified by the user. In either case the results are stored to a DataTable and its default view is bound to a data grid on the form. The C code is shown in Example 4-12. Example 4-12. File SpParameterForm.cs Namespaces variables and constants using System using System.Configuration using System.Data using System.Data.SqlClient using System.Data.OleDb . . . String procedureName Sales by Year Create the table to hold the results. DataTable dt new DataTable if commandBuilderRadioButton.Checked Build a command object for the Sales by Year stored procedure. SqlConnection conn new SqlConnection ConfigurationSettings.AppSettings S ql_ConnectString SqlCommand cmd new SqlCommand procedureName conn cmd.CommandType CommandType.StoredProcedure Get the parameters. conn.Open SqlCommandBuilder.DeriveParameters cmd conn.Close Define table columns to hold the results. dt.Columns.Add Name dt.Columns.Add Direction dt.Columns.Add SqlType Retrieve the results from the command object to the table. foreach SqlParameter param in cmd.Parameters dt.Rows.Add new object param.ParameterName param.Direction.ToString param.SqlDbType.ToString dataGrid.CaptionText Stored procedure procedureName parameters using CommandBuilder.DeriveParameters else if spRadioButton.Checked Build a command object to use SQL Server stored procedure to retrieve parameters. SqlConnection conn new SqlConnection ConfigurationSettings.AppSettings S ql_ConnectString SqlCommand cmd new SqlCommand sp_sproc_columns conn cmd.CommandType CommandType.StoredProcedure SqlParameter param cmd.Parameters.Add @procedure_name SqlDbType.NVarChar 390 param.Value .

TÀI LIỆU LIÊN QUAN