Initial commit of version 0.9.5.2; no older versions exist for this repo.

This commit is contained in:
2016-11-05 12:02:02 -05:00
parent ea2f5b8a59
commit 98b3626154
111 changed files with 97171 additions and 0 deletions
@@ -0,0 +1,22 @@
using System.Configuration;
using System.IO;
using System.Windows.Forms;
namespace AdvertsingProfitControl
{
class DatabaseTracker
{
//private string _DatabaseProvider = "Provider=Microsoft.ACE.OLEDB.12.0;";
//private string _SecuritySettings = "Persist Security Info=False";
public DatabaseTracker()
{
}
public string DatabaseConnectionString
{
get { return "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=APCDatabase.accdb;Persist Security Info=False"; }
}
}
}