for some reason my application is looking for my database in the wrong place
i get an error "cannot find C:/database.accdb"
this is in my app.config aswell
i have searched the whole solution from "C:/database.accdb" but it is nowhere any ideas?
i get an error "cannot find C:/database.accdb"
Code:
Dim conn As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=\database.accdb")
Dim cmd As New OleDbCommand("SELECT COUNT(*) FROM [users] WHERE Fname = @Fname AND Lname = @Lname AND Password = @Password", conn)
Code:
connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=\database.accdb"
providerName="System.Data.OleDb" />
Comment