Uses of Package
org.postgresql.jdbc
Packages that use org.postgresql.jdbc
Package
Description
-
Classes in org.postgresql.jdbc used by org.postgresqlClassDescriptionSpecifies which mode is used to execute queries to database: simple means ('Q' execute, no parse, no bind, text mode only), extended means always use bind/execute messages, extendedForPrepared means extended for prepared statements only.
-
Classes in org.postgresql.jdbc used by org.postgresql.coreClassDescriptionInternal class, it is not a part of public API.Specifies whether a SELECT/CALL statement is used for the underlying SQL for JDBC escape call syntax: 'select' means to always use SELECT, 'callIfNoReturn' means to use CALL if there is no return parameter (otherwise use SELECT), and 'call' means to always use CALL.This is an internal class to hold field metadata info like table name, column name, etc.Specifies which mode is used to execute queries to database: simple means ('Q' execute, no parse, no bind, text mode only), extended means always use bind/execute messages, extendedForPrepared means extended for prepared statements only.Misc utils for handling time and date values.
-
Classes in org.postgresql.jdbc used by org.postgresql.core.v3ClassDescriptionInternal class, it is not a part of public API.
-
Classes in org.postgresql.jdbc used by org.postgresql.ds.commonClassDescriptionSpecifies which mode is used to execute queries to database: simple means ('Q' execute, no parse, no bind, text mode only), extended means always use bind/execute messages, extendedForPrepared means extended for prepared statements only.
-
Classes in org.postgresql.jdbc used by org.postgresql.jdbcClassDescriptionThis class holds all of the methods common to both Blobs and Clobs.Array list implementation specific for storing PG array elements.Base class to implement
ArrayEncoding.ArrayEncoder
and provide multi-dimensional support.Internal class, it is not a part of public API.Specifies whether a SELECT/CALL statement is used for the underlying SQL for JDBC escape call syntax: 'select' means to always use SELECT, 'callIfNoReturn' means to use CALL if there is no return parameter (otherwise use SELECT), and 'call' means to always use CALL.This is an internal class to hold field metadata info like table name, column name, etc.Specifies which mode is used to execute queries to database: simple means ('Q' execute, no parse, no bind, text mode only), extended means always use bind/execute messages, extendedForPrepared means extended for prepared statements only.Wrapper class for SQLWarnings that provides an optimisation to add new warnings to the tail of the SQLWarning singly linked list, avoiding Θ(n) insertion time of calling #setNextWarning on the head.Helper class that storing result info.RepresentsPgStatement.cancel()
state.Misc utils for handling time and date values. -
Classes in org.postgresql.jdbc used by org.postgresql.ssl.jdbc4