MsqlColumn(String col, String table, int typ, int len, boolean n, boolean pk)
super();
column_name = col;
table_name = table;
length = len;
nullable = n;
primary_key = pk;
switch( typ ) {
case 1:
type = Types.INTEGER;
break;
case 2:
type = Types.CHAR;
break;
case 3:
type = Types.REAL;
break;
case 5:
type = Types.NULL;
break;
}
|