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
MySQL Server does not support 128-bit integers, but it seems useful to support the Int128 and UInt128 types for MySqlParameter.Value, MySqlDataReader.GetFieldValue<T>, and other places values can be passed to/from the database. (Any values larger than the range of a 64-bit integer would be checked by the database and cause a server-side error; no restrictions should be placed on the client side.)
The text was updated successfully, but these errors were encountered:
MySQL Server does not support 128-bit integers, but it seems useful to support the
Int128
andUInt128
types forMySqlParameter.Value
,MySqlDataReader.GetFieldValue<T>
, and other places values can be passed to/from the database. (Any values larger than the range of a 64-bit integer would be checked by the database and cause a server-side error; no restrictions should be placed on the client side.)The text was updated successfully, but these errors were encountered: