MySqlConnector
MySqlConnector copied to clipboard
Add support for Int128, UInt128
trafficstars
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.)
Related issues:
- https://github.com/npgsql/npgsql/issues/5075
- https://github.com/dotnet/efcore/issues/30930
- https://github.com/dotnet/efcore/issues/28498