M$ Access databases are great for learning database access! Ask a specific question and I'm sure you'll get an answer. As for the Recordset equivalent, the closest thing .NET has to a Recordset is a DataReader but it is forward only and read only. If you want to edit, you should be looking at DataSets/DataTables.
A word to wise: .NET is vastly different from VB 6 and force you to think in an Object Oriented manner (contrary to what Microsoft would have you believe). It will challenge your existing VB 6 proficiency and make you feel like a n00b. Be prepared to ride out that initial phase of self-doubt. ;-) On Jun 15, 2:45 pm, "[email protected]" <[email protected]> wrote: > Hi I m anubhav, I m through with vb6 n now starting with vb.net on my > own. > > I m not very comfy with SQL so I use access databases. Plz help me > understand how to add, delete, modify n search records in access > databases through vb.net application. > > Also I used to write simple statements in vb6 like > “adodc1.recordset.addnew/delete/edit”. Are there any equivalent > statements in vb.net. > > Plz help > > thanks
