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
Currently, NUM_PREC_RADIX column in SQLColumns is returning default values based on data types. The code makes an assumption that the server always returns number of digits for decimal, numeric, smallint, tinyint, integer, and bigint data types. And assumes the server returns number of bits for real, float, and double. But the server could return number of bits for non-floating point data too. The driver needs a reliable way to tell if COLUMN_SIZE is returning number of digits or bits for the data type.