How to establish connection to Access DB ??

Mischamel

Regular
Joined
Apr 17, 2003
Messages
91
Location
Switzerland - Rome - Darmstadt
Moin,

I created an Asp Project, to show some rows in a datagrid or datalist.I Set the connection, oledbadapter and dataset in(from) the wizard or properties window. When I try to fill the ds, err msg occurs with: Db already exclusively opened or u need access key....

Do I have to set parameters in IIs config or set the Db in another path(now it´s in the inetpub folder) or are there any other recommendations in the connection settings or adapters config ???
 
Wizards as they are offered from developSoftw Vb.Net. Connection is set by wizard nad dataset, dataAdapter as well. Options like Datasource of the datagrid are set in property fields on the right side of vb.net. There´s no code to post, only :

Sub PageLoad() REM Or ButtonClick
OleDbDataAdapter1.Fill(DS,"TABLE") REM Here it offers errmsg.
DATABIND()
 
Back
Top