17551756175717581759176017611762176317641765
ValuePool.getInt(column.getDataType().typeCode); row[nullable] = ValuePool.getInt(column.getNullability()); row[is_nullable] = column.isNullable() ? "YES" : "NO"; t.insertSys(store, row); } } } return t;
18651866186718681869187018711872187318741875
row[procedure_name] = routine.getName().name; row[procedure_type] = routine.isProcedure() ? ValuePool.INTEGER_1 : ValuePool.INTEGER_2; row[specific_name] = routine.getSpecificName().name; t.insertSys(store, row); } return t; }
19421943194419451946194719481949195019511952
row[imax_len] = ValuePool.getInt(8); row[idefault_value] = def == null ? null : def.toString(); row[idescription] = "see HyperSQL guide"; t.insertSys(store, row); } return t; }
22222223222422252226222722282229223022312232
row[0] = schema; row[1] = database.getCatalogName().name; row[2] = schema.equals(defschema) ? Boolean.TRUE : Boolean.FALSE; t.insertSys(store, row); } return t; }
24292430243124322433243424352436243724382439
for (int i = 0; i < tableTypes.length; i++) { row = t.getEmptyRowData(); row[0] = tableTypes[i]; t.insertSys(store, row); } return t; }
26372638263926402641264226432644264526462647
//------------------------------------------ if (type.isIntervalType()) { row[iinterval_precision] = null; } t.insertSys(store, row); } row = t.getEmptyRowData(); row[itype_name] = "DISTINCT"; row[idata_type] = ValuePool.getInt(Types.DISTINCT);
27442745274627472748274927502751275227532754
data[class_name] = type.getJDBCClassName(); data[data_type] = ValuePool.getInt(Types.DISTINCT); data[remarks] = null; data[base_type] = ValuePool.getInt(type.getJDBCTypeCode()); t.insertSys(store, data); } return t; }
28742875287628772878287928802881288228832884
row[0] = user.getNameString(); row[1] = ValuePool.getBoolean(user.isAdmin()); row[2] = ((initialSchema == null) ? null : initialSchema.name); t.insertSys(store, row); } return t; }
32023203320432053206320732083209321032113212
row[declared_numeric_precision] = row[numeric_precision]; row[declared_numeric_scale] = row[declared_numeric_scale]; row[start_with] = String.valueOf(sequence.getStartValue()); row[next_value] = String.valueOf(sequence.peek()); t.insertSys(store, row); } return t; }
33093310331133123313331433153316331733183319