Executing pre-defined MS Access query from VB .Net
Hello,
I used to execute queries in MS Access from VB 6 using the following:
Dim DB as database
set db = Openrecordset("C:\mydb.mdb")
db.QueryDefs("myQuery").execute
How can I accomplish this from VB .Net without using DAO or ADOX. I want to use ADO.Net or whatever is recommended for use.
Thanks!