コード例 #1
0
        internal VistaDBDataReader(VistaDBSQLQuery query, bool fillData, VistaDBConnection connection)
        {
            this.query             = query;
            this.vistaDBConnection = connection;
            this.rowsAffected      = this.query.RowsAffected;
            this.rowCount          = this.query.RecordCount;

            this.columns = new VistaDBColumnCollection(this);
        }
コード例 #2
0
ファイル: vnDataReader.cs プロジェクト: attila3453/alsing
		internal VistaDBDataReader(VistaDBSQLQuery query, bool fillData, VistaDBConnection connection)
		{
			this.query             = query;
			this.vistaDBConnection = connection;
			this.rowsAffected      = this.query.RowsAffected;
			this.rowCount          = this.query.RecordCount;

			this.columns           = new VistaDBColumnCollection(this);
		}
コード例 #3
0
ファイル: VistaDBSQLQuery.cs プロジェクト: jmptrader/alsing-1
        public VistaDBSQLQuery(VistaDBSQLConnection p)
        {
            rowsAffected = 0;
            recordCount  = 0;
            commandText  = "";
            columnCount  = 0;
            password     = "";
            errorNumber  = 0;
            parent       = p;
            opened       = false;

            Columns = new VistaDBColumnCollection(this);
        }
コード例 #4
0
ファイル: VistaDBSQL.cs プロジェクト: eksotama/LayerGenerate
        internal VistaDBSQLQuery(VistaDBSQL p)
        {
            rowsAffected = 0;
            sqlID        = 0;
            queryID      = 0;
            recordCount  = 0;
            commandText  = "";
            columnCount  = 0;
            password     = "";
            errorNumber  = 0;
            parent       = p;
            opened       = false;

            Columns = new VistaDBColumnCollection(this);

            queryID = VistaDBAPI.ivsql_CreateQuery(p.ConnectionID);
        }
コード例 #5
0
ファイル: vnDataReader.cs プロジェクト: attila3453/alsing
		/// <summary>
		/// Releases the resources used by the component.
		/// </summary>
		public void Dispose()
		{
			this.columns           = null;
			this.vistaDBConnection = null;
			Close();
		}
コード例 #6
0
 /// <summary>
 /// Releases the resources used by the component.
 /// </summary>
 public void Dispose()
 {
     this.columns           = null;
     this.vistaDBConnection = null;
     Close();
 }
コード例 #7
0
		public VistaDBSQLQuery(VistaDBSQLConnection p)
		{
			rowsAffected = 0;
			recordCount = 0;
			commandText = "";
			columnCount = 0;
			password = "";
			errorNumber = 0;
			parent = p;
			opened = false;

			Columns = new VistaDBColumnCollection(this);
		}
コード例 #8
0
		internal VistaDBSQLQuery(VistaDBSQL p)
		{
			rowsAffected = 0;
			sqlID = 0;
			queryID = 0;
			recordCount = 0;
			commandText = "";
			columnCount = 0;
			password = "";
			errorNumber = 0;
			parent = p;
			opened = false;

			Columns = new VistaDBColumnCollection(this);

			queryID = VistaDBAPI.ivsql_CreateQuery(p.ConnectionID);
		}