Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: unsigned tinyint/smallint/int/bigint exceed range issue #151

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

enix223
Copy link

@enix223 enix223 commented Mar 18, 2024

Refer to mysql-connector-j, map the following data types to corresponding java types:

  • UTINYINT use Short instead of Byte.
  • USMALLINT use Integer instead of Short.
  • UINT use Long instead of Integer.
  • UBIGINT use BigInteger instead of Long

Fix #150

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Bug: unsigned tinyint/smallint/int/bigint issue
1 participant