public class ConnectionFactoryImpl extends ConnectionFactory
| Constructor and Description |
|---|
ConnectionFactoryImpl() |
| Modifier and Type | Method and Description |
|---|---|
QueryExecutor |
openConnectionImpl(HostSpec[] hostSpecs,
java.lang.String user,
java.lang.String database,
java.util.Properties info)
Implementation of
ConnectionFactory.openConnection(org.postgresql.util.HostSpec[], java.lang.String, java.lang.String, java.util.Properties) for a particular protocol version. |
closeStream, openConnectionpublic QueryExecutor openConnectionImpl(HostSpec[] hostSpecs, java.lang.String user, java.lang.String database, java.util.Properties info) throws java.sql.SQLException
ConnectionFactoryConnectionFactory.openConnection(org.postgresql.util.HostSpec[], java.lang.String, java.lang.String, java.util.Properties) for a particular protocol version. Implemented by
subclasses of ConnectionFactory.openConnectionImpl in class ConnectionFactoryhostSpecs - at least one host and port to connect to; multiple elements for round-robin
failoveruser - the username to authenticate with; may not be null.database - the database on the server to connect to; may not be null.info - extra properties controlling the connection; notably, "password" if present
supplies the password to authenticate with.null if this protocol version is not
supported by the server.java.sql.SQLException - if the connection could not be established for a reason other than
protocol version incompatibility.Copyright © 2021 PostgreSQL Global Development Group. All rights reserved.