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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public DbQueryLogCollection FetchByID(object QryId)
        {
            DbQueryLogCollection coll = new DbQueryLogCollection().Where("qry_ID", QryId).Load();

            return(coll);
        }