want the class connecting the database

  • Thread starter Thread starter Major
  • Start date Start date
M

Major

sorry
i'm very sorry all but i want the name of the class which
connect the database and we can use it to insert, delet,
update .
thanx for u all for these replys .
 
Major said:
sorry
i'm very sorry all but i want the name of the class which
connect the database and we can use it to insert, delet,
update .
thanx for u all for these replys .


There are 1001 books about database programming, so I think the subject is a
little but more complex than you expect.

Here are two starting points. Examples should also be contained:
http://msdn.microsoft.com/library/en-us/cpguide/html/cpconaccessingdatawithadonet.asp
http://msdn.microsoft.com/library/en-us/vbcon/html/vboriIntegratingDataVB.asp

The group for ADO.NET related questions is
microsoft.public.dotnet.framework.adonet
 
Hi Major
sorry
i'm very sorry all but i want the name of the class which
connect the database and we can use it to insert, delet,
update .
thanx for u all for these replys .

connection
SQLconnection and OleDBConnection

fill, update, delete, insert
SQLdataAdapter and OleDbDataAdapter

Here a link with a lot of samples, step by step walkthroughs, explanations
for this

http://msdn.microsoft.com/vbasic/vbrkit/default.aspx

And if you have problems installing it

http://msdn.microsoft.com/vbasic/vbrkit/faq/#installvdir

I hope this helps a little bit?

Cor
 
Hello Major

To connect : SqlConnection (for sql server) or
OLEDBConnection (for access).
To insert, update, delete : SqlDataAdpater or
OLEDbDataAdapter

Kind Regards
Jorge Cavalheiro
 
Back
Top