Example #1
0
        public Database(string typeName, string server, string name, string connectionString)
        {
            this.typeName = typeName;
            this.server = server;
            this.name = name;
            this.connectionString = connectionString;
            connection = new OdbcConnection(this.connectionString);

            _tables = new Tables(this);
            _views = new Views(this);
            _sequences = new Sequences(this);
            _storedprocedures = new StoredProcedures(this);
            _functions = new Functions(this);
            _modules = new Modules(this);
            _mqts = new MQTS(this);
        }
Example #2
0
 public void reset()
 {
     _tables = new Tables(this);
     _views = new Views(this);
     _sequences = new Sequences(this);
     _storedprocedures = new StoredProcedures(this);
     _functions = new Functions(this);
     _modules = new Modules(this);
     _mqts = new MQTS(this);
 }