Beispiel #1
0
        public UpdateComponent()
        {
            ///
            /// This call is required by the Windows.Forms Designer.
            ///
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            //_fieldAttrs = new List<FieldAttr>();
            _fieldAttrs = new FieldAttrCollection(this, typeof(FieldAttr));
            _transIsolationLevel = IsolationLevel.ReadCommitted;
            _serverModifyColumns = new ServerModifyColumnCollection(this, typeof(ServerModifyColumn));
            _autoTrans = true;
            _serverModify = true;
            _RowAffectsCheck = true;
            _schemas = new Hashtable();
        }
Beispiel #2
0
        public UpdateComponent(System.ComponentModel.IContainer container)
        {
            ///
            /// Required for Windows.Forms Class Composition Designer support
            ///
            container.Add(this);
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            //_fieldAttrs = new List<FieldAttr>();
            _fieldAttrs = new FieldAttrCollection(this, typeof(FieldAttr));
            _serverModifyColumns = new ServerModifyColumnCollection(this, typeof(ServerModifyColumn));
            _transIsolationLevel = IsolationLevel.ReadCommitted;
            _autoTrans = true;
            _serverModify = true;
            _needSyncFVs = false;
            _syncFieldValues = new Hashtable();
            _schemas = new Hashtable();
        }