This commit is contained in:
Looly 2021-09-17 20:06:51 +08:00
parent b935ace121
commit 62df10126c

View File

@ -358,7 +358,7 @@ public class StatementUtil {
return;
}
if (param instanceof BigInteger) {
// BigInteger转为Long
// BigInteger转为BigDecimal
ps.setBigDecimal(paramIndex, new BigDecimal((BigInteger) param));
return;
}