Datacommand objects?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am new to VB/.NET
What are datacommand objects? Can I use them instead of Dataset to access
database and make changes to database?

Thanks.
 
There are lots and lots to say either on dataset or Datacommands . the
least to say
A data command is just a reference to a command to execute on some database
while you can think of dataset as IN MEMORY representation of the
database . you use dataset to like take a copy of all . or part of the
database into memory . do changes on that copy ( with no need to be
connected to the database ) . once you did all this changes . you can go
back open the connection and update these changes to the database.

You can read more on datacommands on this link

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/
vbconintroductiontodatacommandobjectsinvisualstudio.asp
on dataset on

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_pj2003_
ta/html/ODC_PJHostingPDSWebApplications.asp
Hope this helps
Mohamed Mahfouz
MEA Developer Support Center
ITworx on behalf of Microsoft EMEA GTSC
 

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