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

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

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