In one of my reports I need to connect to an Access DB.
Here is my connection string:
Code: Select all
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=database_name.accdb;Persist Security Info=False
Is there an additional parameter I can add to the connection string to bypass this access issue? I just want to have access to the data in read only mode to print some labels. I tried by adding:
Code: Select all
Mode=Read;
Thanks for your help.