I'm connecting to an access database with OleDb, and the data source is located in my project files. Since the project will be zipped and moved around, I want it to be found no matter what.
connetionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=University.accdb;";
Any other time I have worked with a data source, I have been able to put it's location like that, however, when I do that here, it tries to look in 'C:\Program Files (x86)\Common Files\Microsoft Shared\DevServer\10.0\University.accdb'.
Is there any way I can make this automatically look inside the project files?