full blown SQL command

  • Thread starter Thread starter Adam Clark
  • Start date Start date
A

Adam Clark

I ask this question before but maybe I didn't work it correctly. What I want
to do is run a full blown sql statement against a dataset (ADO.NET). How do
I do this

(for example, running the INSERT .... INTO statement).

Thanks

Adam
 
I ask this question before but maybe I didn't work it correctly. What I want
to do is run a full blown sql statement against a dataset (ADO.NET). How do
I do this

(for example, running the INSERT .... INTO statement).

You can't run SQL against a DataSet. You must manipulate the rows
one-by-one.
 
use the oledbconnection object and dataadapter

Adam Clark said:
I ask this question before but maybe I didn't work it correctly. What I want
to do is run a full blown sql statement against a dataset (ADO.NET). How do
I do this

(for example, running the INSERT .... INTO statement).

Thanks

Adam
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top