Re: Binary protocol support for JDBC
| От | Radosław Smogura |
|---|---|
| Тема | Re: Binary protocol support for JDBC |
| Дата | |
| Msg-id | 201007202245.55164.rsmogura@softperience.eu обсуждение |
| Ответ на | Re: Binary protocol support for JDBC (Kris Jurka <books@ejurka.com>) |
| Список | pgsql-jdbc |
And I forgot about some AbstractJdbc2ResultSet constants used for cache
important values, I haven't checked this nbase, but it's looks like it's
constant in Postgres.
private static final BigInteger _nbase = new BigInteger("10000");
private static final BigInteger _nbasePow2 = _nbase.pow(2);
private static final BigInteger _nbasePow4 = _nbase.pow(4);
private static final long nbaseLong = _nbase.longValue();
private static final long nbaseLongPow2 = nbaseLong * nbaseLong;
private static final int nbaseInt = (int) nbaseLong;
protected BigInteger getNBase() {
return _nbase;
}
protected BigInteger getNBasePow2() {
return _nbasePow2;
}
protected BigInteger getNBasePow4() {
return _nbasePow4;
}
В списке pgsql-jdbc по дате отправления: