MySqlConnector icon indicating copy to clipboard operation
MySqlConnector copied to clipboard

Add support for Int128, UInt128

Open bgrainger opened this issue 2 years ago • 1 comments
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.)

bgrainger avatar Sep 13 '23 22:09 bgrainger

Related issues:

  • https://github.com/npgsql/npgsql/issues/5075
  • https://github.com/dotnet/efcore/issues/30930
  • https://github.com/dotnet/efcore/issues/28498

bgrainger avatar Nov 12 '23 22:11 bgrainger