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
I've encountered an odd issue with the bulk_insert function. The function fails when inserting values with scale >= 4 and 4 leading 0s. For example,
ctds.SqlDecimal(.000183, 23, 10)
will work, while
ctds.SqlDecimal(.000083, 23, 10)
fails. It could possibly have something to do with python representing floating point numbers in scientific notation when the # of leading 0s after the decimal is >= 4.
The text was updated successfully, but these errors were encountered:
I've encountered an odd issue with the bulk_insert function. The function fails when inserting values with scale >= 4 and 4 leading 0s. For example,
ctds.SqlDecimal(.000183, 23, 10)
will work, while
ctds.SqlDecimal(.000083, 23, 10)
fails. It could possibly have something to do with python representing floating point numbers in scientific notation when the # of leading 0s after the decimal is >= 4.
The text was updated successfully, but these errors were encountered: