Inheritance: AbstractConnection
Example #1
0
        public override AbstractConnection getConnection(DataSource dataSource)
        {
            VistaConnection c = new VistaConnection(dataSource);

            // Removed by Joe 6/21/10.  Not all sites have the new broker.
            c.ConnectStrategy = new VistaNatConnectStrategy(c);

            //c.ConnectStrategy = new VistaDirectConnectStrategy(c);
            return(c);
        }
Example #2
0
        public override AbstractConnection getConnection(DataSource dataSource)
        {
            VistaConnection c = new VistaConnection(dataSource);

            // Removed by Joe 6/21/10.  Not all sites have the new broker.
            c.ConnectStrategy = new VistaNatConnectStrategy(c);

            //c.ConnectStrategy = new VistaDirectConnectStrategy(c);
            return c;
        }
Example #3
0
 public VistaDirectConnectStrategy(AbstractConnection cxn)
 {
     this.cxn        = (VistaConnection)cxn;
     this.dataSource = cxn.DataSource;
 }
Example #4
0
 public VistaSystemDao(Connection cxn)
 {
     this.cxn = (VistaConnection)cxn;
 }
Example #5
0
 public DdrValidator(VistaConnection cxn)
 {
     this.cxn = cxn;
 }
Example #6
0
 public VistaProblemDao(AbstractConnection cxn)
 {
     _cxn = (VistaConnection)cxn;
 }
Example #7
0
 public VistaSystemDao(Connection cxn)
 {
     this.cxn = (VistaConnection)cxn;
 }
Example #8
0
 public VistaOrdersDao2(AbstractConnection cxn)
 {
     _cxn = cxn as VistaConnection;
 }
Example #9
0
 public VistaProceduresDao(AbstractConnection cxn)
 {
     _cxn = (VistaConnection)cxn;
 }
 public DdrValidator(VistaConnection cxn)
 {
     this.cxn = cxn;
 }
Example #11
0
 public VistaCrudDao(AbstractConnection cxn)
 {
     _cxn = (VistaConnection)cxn;
 }
Example #12
0
 public VistaNatConnectStrategy(AbstractConnection cxn)
 {
     this.cxn = (VistaConnection)cxn;
     this.dataSource = cxn.DataSource;
 }