Exemplo n.º 1
0
        public VgiDatoCollection FetchByQuery(Query qry)
        {
            VgiDatoCollection coll = new VgiDatoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public VgiDatoCollection FetchAll()
        {
            VgiDatoCollection coll = new VgiDatoCollection();
            Query             qry  = new Query(VgiDato.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }