| 1 package com.daffodilwoods.daffodildb.server.sql99.common; 2 3 import com.daffodilwoods.daffodildb.server.sql99.dql.*; 4 5 public interface TypeConstants { 6 public static int CONNECTION = 0; 7 public static int GROUPING = 1; 8 public static int REFERENCE = 2; 9 public static int CONSTANT = 3; 10 public static int SCALARFUNCTION = 13; 11 public static int DERIVEDCOLUMN = 17; 12 public static short VIEW = 18; 13 public static short TABLE = 19; 14 public static int HAS_RECORD = 20; 15 16 public static int JOIN = 4; 17 public static int LEFT_OUTER_JOIN = 5; 18 public static int RIGHT_OUTER_JOIN = 6; 19 public static int FULL_OUTER_JOIN = 7; 20 public static int INNERJOIN = 8; 21 22 23 public static int FUNCTIONAL = 12; 24 25 public static int PROCEDURE = 14; 26 public static int TRIGGER = 15; 27 public static int REMOVE = 16; 28 public static int SET = 21; 29 public static int OTHER = 22; 30 public static int SEQUENCECOLUMN = 23; 31 public static int SYSTEMCOLUMNSLENGTH = 5; 32 33 public static int CASEEXPRESSION = 24; 34 public static int CURSOR = 25; 35 36 public static int BOTHSIDESEEKABLE = 26; 37 public static int LEFTSIDESEEKABLE = 27; 38 public static int RIGHTSIDESEEKABLE = 28; 39 public static int NOSEEK = 29; 40 public static int SEQUENCETYPE = 24; 41 public static int USERFUNCTION=30; 42 public static int SCALARSUBQUERY=31; 43 } 44 | Popular Tags |