public TableIndexRecord(TPSRecord record)
        {
            RandomAccess ra = new RandomAccess();

            ra.OpenStream(new System.IO.MemoryStream(record.RecordData));

            _tableID = ra.beLong();
            _indexID = ra.leByte();

            ra.jumpAbs(ra.fileSize - 4);
            _recordID = ra.beLong();

            ra = null;
        }