Esempio n. 1
0
 public AdvantageDatabase(string datapath, string tabletype, string servertype)
     : base(new AdvantageConnection(datapath, tabletype, servertype))
 {
     SchemaValidator      = new NotifyValidator(this);
     this.ExecuteCommands = new AdvantageCommandExecutor();
     this.ObjectFinder    = new NoSchemaSupportObjectFinder();
 }
Esempio n. 2
0
 public AdvantageDatabase(string connstring)
     : base(new AdvantageConnection(connstring))
 {
     SchemaValidator      = new NotifyValidator(this);
     this.ExecuteCommands = new AdvantageCommandExecutor();
     this.ObjectFinder    = new NoSchemaSupportObjectFinder();
 }
Esempio n. 3
0
 public AdvantageDatabase(string connstring)
 {
     SchemaValidator            = new NotifyValidator(this);
     Connection                 = new AdvantageConnection(connstring);
     this.ExecuteCommands       = new AdvantageCommandExecutor();
     this.TypeInformationParser = new TypeParser(this);
     this.ObjectFinder          = new NoSchemaSupportObjectFinder();
 }