I am using InstallShield limited edition in Visual Studio 2013, and I'm having problems of write permission on database. I want to add database file in the app folder - how to do that using InstallShield?
And how to modify connection string for app folder on Windows?
SqlConnection conn = new SqlConnection(@"Data Source=(LocalDB)\v11.0;AttachDbFilename="+Environment.GetFolderPath(System.Environment.SpecialFolder.ApplicationData)+"\\Drives.mdf;Integrated Security=True; Connect Timeout=60; ");