I'm using Visual studio 2003. I have created a simple programming using VS 2003 with Microsoft Access 2000 as the database. I put the database in C:\learn vb.net\mydatabase\mydatabase\mydatabase.mdb.
In the app.config,
<?xmlversion="1.0"encoding="utf-8"?>
<configuration>
<appSettings>
<addkey="dsn"value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=..\..\mydatabase.mdb"/>
</appSettings>
</configuration>
I tried compiling it but it gives this error -
An unhandled exception of type 'System.Data.OleDB.OleDBException' occured in mydatabase.exe.
If anyone could point out to me the cause of the error, I really appreciate it. Thanks
In the app.config,
<?xmlversion="1.0"encoding="utf-8"?>
<configuration>
<appSettings>
<addkey="dsn"value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=..\..\mydatabase.mdb"/>
</appSettings>
</configuration>
I tried compiling it but it gives this error -
An unhandled exception of type 'System.Data.OleDB.OleDBException' occured in mydatabase.exe.
If anyone could point out to me the cause of the error, I really appreciate it. Thanks