bang head here
Member
Ive bene trying to just get a DB connection and it wont work. Its an Access database so Im using the OleDbConnection. No where in any example does it have me reference this or anything. When I use examples as shown I get: "BC30002: Type OleDbConnection is not defined."
example:
So what is going on here? My head hurts after just trying to do a stupid connection opening...I fear for how long this will take me to get up to speed on it all.
Cheers!
example:
Code:
Const sConnStr as String="Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\Programming\Testing\Database.mdb;"
Dim objConn as New OleDbConnection(sConnStr)
objConn.Open()
So what is going on here? My head hurts after just trying to do a stupid connection opening...I fear for how long this will take me to get up to speed on it all.
Cheers!