----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: IS08001 Message 3 in Discussion Hi, You can use the SqlHelper available in the following link http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/daab-rm.asp which have the implementation for all the Data Access Methods. Under that u can see the follwing methos which will helps you. public static System.Data.DataSet ExecuteDataset ( System.Data.SqlClient.SqlConnection connection , System.Data.CommandType commandType , System.String commandText , params System.Data.SqlClient.SqlParameter[] commandParameters ) Member of Microsoft.ApplicationBlocks.Data.SqlHelper Summary: Execute a SqlCommand (that returns a resultset) against the specified SqlConnection using the provided parameters. Parameters: connection: a valid SqlConnection commandType: the CommandType (stored procedure, text, etc.) commandText: the stored procedure name or T-SQL command commandParameters: an array of SqlParamters used to execute the command Returns: a dataset containing the resultset generated by the command Remarks: e.g.: DataSet ds = ExecuteDataset(conn, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24)); _________________________________________________________________ Don�t miss out on jobs that are not advertised. http://go.msnserver.com/IN/38902.asp Post your CV on naukri.com today. ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
