public void Test_skipALL()
        {
            DBConnection db = new DBConnection();

            db.connect(SERVER, PORT);
            EntityBlockReader bt = (EntityBlockReader)db.run("table(1..100000 as id)", (ProgressListener)null, 4, 4, 10000);

            bt.skipAll();
            Assert.AreEqual(false, bt.hasNext());
        }