You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The info returned by DatabaseMetaData.getColumns() is too limited.
Presently it returns the following:
TABLE_NAME
COLUMN_NAME
ORDINAL_POSITION
The rest of the fields contain some constant or inadequate data:
DATA_TYPE is always Types.OTHER
TYPE_NAME is either "integer" or "scalar"
NUM_PREC_RADIX is always 10
NULLABLE is always 1
IS_NULLABLE is always YES
SOURCE_DATA_TYPE ia always Types.OTHER
IS_AUTOINCREMENT is always "NO"
IS_GENERATEDCOLUMN is always "NO"
The text was updated successfully, but these errors were encountered:
The info returned by DatabaseMetaData.getColumns() is too limited.
Presently it returns the following:
TABLE_NAME
COLUMN_NAME
ORDINAL_POSITION
The rest of the fields contain some constant or inadequate data:
DATA_TYPE is always Types.OTHER
TYPE_NAME is either "integer" or "scalar"
NUM_PREC_RADIX is always 10
NULLABLE is always 1
IS_NULLABLE is always YES
SOURCE_DATA_TYPE ia always Types.OTHER
IS_AUTOINCREMENT is always "NO"
IS_GENERATEDCOLUMN is always "NO"
The text was updated successfully, but these errors were encountered: