Newbie question

  • Thread starter Thread starter Gary
  • Start date Start date
G

Gary

What is the easiest way to send and save data to an access
2000 database in vb.net? All I need to be able to do is
put about 15 pieces of info into a new row in the database.
I am sure this is a stupid question, but I cant seem to
figure it out. Thanks.
 
Gary said:
What is the easiest way to send and save data to an access
2000 database in vb.net? All I need to be able to do is
put about 15 pieces of info into a new row in the database.
I am sure this is a stupid question, but I cant seem to
figure it out. Thanks.

I'd open an OleDBconnection and use an OleDbCommand to insert the records.
More about ADO.NET:
<F1>
VS.NET
.NET Framework
Programming with the .NET Framework
Accessing Data with ADO.NET

same chapter as above:
http://msdn.microsoft.com/library/en-us/cpguide/html/cpconaccessingdatawithadonet.asp


Newsgroup for ADO.NET questions: microsoft.public.dotnet.framework.adonet
 
Back
Top