Open enix223 opened 8 months ago
Refer to mysql-connector-j, map the following data types to corresponding java types:
UTINYINT
USMALLINT
UINT
UBIGINT
Fix #150
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 LongFix #150