public ADBContext(string hostname, int port, string dbname, string username, string password) { //todo: DBContext, need to be replaced with "connection strings in web.config" this.hostname = hostname; this.dbport = port; this.dbname = dbname; this.username = username; this.password = password; if (!ASettings.HasConnection("obieg")) { ASettings.AddConnection("obieg", hostname, dbport, false, dbname, username, password); } }
static Database() { TestDatabaseOneTime = "testOneTimeDatabase001xyzLatif"; TestDatabaseGeneral = "testDatabaseGeneral001xyzLatif"; TestDocumentCollectionName = "testDocumentCollection001xyzLatif"; TestEdgeCollectionName = "testEdgeCollection001xyzLatif"; Alias = "testAlias"; SystemAlias = "systemAlias"; Hostname = "localhost"; Port = 8529; IsSecured = false; UserName = "******"; Password = "******"; ASettings.AddConnection( SystemAlias, Hostname, Port, IsSecured, "_system", UserName, Password ); ASettings.AddConnection( Alias, Hostname, Port, IsSecured, TestDatabaseGeneral, UserName, Password ); }