----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: Mrinal Message 2 in Discussion Hi , It's actually possible if you are really desperate to do it : Since a dataAdapter also internally uses a Command object , essentially it also creates Insert , Update and Delete Command objects to perform the same set of operations , so you can always create a command object , associate it with a Connection object , Sql query / procedure and keep on passing data to ExecuteNonQuery , but you need to understand the drawbacks of doing this : 1. Command object is always connected , it needs a dedicated connection unlike Adapter which opens and closes the connection on it's own as per the need . 2. mass operations are not possible like an adapter , you need to do it in a for loop . 3. Whole thing is going to extremely inefficient . So , as per me there's no reason why you should drift from standard approach of using DataAdapter , which is optimized for the same purpose . hope it helps , regards , Mrinal ----------------------------------------------------------- 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]
