I am have the following code:
This I figured out on my own just playing with things. Seems like I have created a connection object, set the connection parameters and opened the connection. Now I cant for the life of me find how to create a recordset or query the database at all. These simple functions are what I really need right now, but also if anyone has a website (other then msdn, which has already confused me enough for a lifetime) that covers all these basics it would be greatly appreciated, thank you.
Code:
Dim Conn As OleDb.OleDbConnection
Dim sConn = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & _
System.Windows.Forms.Application.ExecutablePath & "\db.mdb"
Conn.ConnectionString = sConn
Conn.Open()
This I figured out on my own just playing with things. Seems like I have created a connection object, set the connection parameters and opened the connection. Now I cant for the life of me find how to create a recordset or query the database at all. These simple functions are what I really need right now, but also if anyone has a website (other then msdn, which has already confused me enough for a lifetime) that covers all these basics it would be greatly appreciated, thank you.