KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > datasystem > persistentsystem > TableProperties


1 package com.daffodilwoods.daffodildb.server.datasystem.persistentsystem;
2
3 import com.daffodilwoods.daffodildb.server.sql99.common.Datatypes;
4 import com.daffodilwoods.daffodildb.server.datasystem.persistentsystem.versioninfo.VersionHandler;
5
6
7 public class TableProperties{
8
9   public boolean[] fixed;
10
11   public boolean[] blobClob;
12
13   public int [] columnPointer;
14
15   public int[] size;
16
17   public int[] columnType;
18
19
20   public int columnCount;
21
22   public boolean fixedTable;
23
24   public int recordSize;
25
26   public int variableColumns;// this will not include blob/clob type
27

28   public int[] fixedLengths;
29
30   public int recordType = -1;
31
32
33   public TableProperties() {
34   }
35
36
37 }
38
Popular Tags