コード例 #1
0
        public PhpssLogCollection FetchByQuery(Query qry)
        {
            PhpssLogCollection coll = new PhpssLogCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public PhpssLogCollection FetchAll()
        {
            PhpssLogCollection coll = new PhpssLogCollection();
            Query qry = new Query(PhpssLog.Schema);

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