CONNECT <refpurpose>establish a database connection</refpurpose> — データベース接続を確立します。
CONNECT TOconnection_target
[ ASconnection_name
] [ USERconnection_user
] CONNECT TO DEFAULT CONNECTconnection_user
DATABASEconnection_target
The <command>CONNECT</command> command establishes a connection
between the client and the PostgreSQL server.
CONNECT
コマンドはクライアントとPostgreSQLサーバとの間の接続を確立します。
connection_target
#
connection_target
specifies the target server of the connection on one of
several forms.
以下の複数の形式の1つを使用して、接続する対象サーバを指定します。
database_name
] [ @
host
] [ :
port
] #Connect over TCP/IP TCP/IPを介した接続。
unix:postgresql://
host
[ :
port
] /
[ database_name
] [ ?
connection_option
] #Connect over Unix-domain sockets Unixドメインソケットを介した接続。
tcp:postgresql://
host
[ :
port
] /
[ database_name
] [ ?
connection_option
] #Connect over TCP/IP TCP/IPを介した接続。
containing a value in one of the above forms 上記形式のいずれかで記述された値を持ちます。
host variable of type <type>char[]</type>
or <type>VARCHAR[]</type> containing a value in one of the
above forms
上記形式のいずれかで記述された値を持つchar[]
またはVARCHAR[]
型のホスト変数。
connection_name
#An optional identifier for the connection, so that it can be referred to in other commands. This can be an SQL identifier or a host variable. 他のコマンドで参照することができる、このデータベース接続の識別子です。省略可能です。 これはSQL識別子またはホスト変数とすることができます。
connection_user
#The user name for the database connection. データベース接続用のユーザ名です。
This parameter can also specify user name and password, using one the forms
<literal><replaceable>user_name</replaceable>/<replaceable>password</replaceable></literal>,
<literal><replaceable>user_name</replaceable> IDENTIFIED BY <replaceable>password</replaceable></literal>, or
<literal><replaceable>user_name</replaceable> USING <replaceable>password</replaceable></literal>.
このパラメータは、
、user_name
/password
、user_name
IDENTIFIED BY password
のいずれかの形式を使用して、ユーザ名とパスワードを指定することができます。
user_name
USING password
User name and password can be SQL identifiers, string constants, or host variables. ユーザ名とパスワードは、SQL識別子、文字列定数、ホスト変数とすることができます。
DEFAULT
#Use all default connection parameters, as defined by libpq. libpqで定義された、デフォルトの接続パラメータすべてを使用します。
Here a several variants for specifying connection parameters: 以下に接続パラメータを指定する複数の種類を示します。
EXEC SQL CONNECT TO "connectdb" AS main; EXEC SQL CONNECT TO "connectdb" AS second; EXEC SQL CONNECT TO "unix:postgresql://200.46.204.71/connectdb" AS main USER connectuser; EXEC SQL CONNECT TO "unix:postgresql://localhost/connectdb" AS main USER connectuser; EXEC SQL CONNECT TO 'connectdb' AS main; EXEC SQL CONNECT TO 'unix:postgresql://localhost/connectdb' AS main USER :user; EXEC SQL CONNECT TO :db AS :id; EXEC SQL CONNECT TO :db USER connectuser USING :pw; EXEC SQL CONNECT TO @localhost AS main USER connectdb; EXEC SQL CONNECT TO REGRESSDB1 as main; EXEC SQL CONNECT TO AS main USER connectdb; EXEC SQL CONNECT TO connectdb AS :id; EXEC SQL CONNECT TO connectdb AS main USER connectuser/connectdb; EXEC SQL CONNECT TO connectdb AS main; EXEC SQL CONNECT TO connectdb@localhost AS main; EXEC SQL CONNECT TO tcp:postgresql://localhost/ USER connectdb; EXEC SQL CONNECT TO tcp:postgresql://localhost/connectdb USER connectuser IDENTIFIED BY connectpw; EXEC SQL CONNECT TO tcp:postgresql://localhost:20/connectdb USER connectuser IDENTIFIED BY connectpw; EXEC SQL CONNECT TO unix:postgresql://localhost/ AS main USER connectdb; EXEC SQL CONNECT TO unix:postgresql://localhost/connectdb AS main USER connectuser; EXEC SQL CONNECT TO unix:postgresql://localhost/connectdb USER connectuser IDENTIFIED BY "connectpw"; EXEC SQL CONNECT TO unix:postgresql://localhost/connectdb USER connectuser USING "connectpw"; EXEC SQL CONNECT TO unix:postgresql://localhost/connectdb?connect_timeout=14 USER connectuser;
Here is an example program that illustrates the use of host variables to specify connection parameters: 以下にホスト変数を使用して接続パラメータを指定する方法を示すプログラム例を示します。
int
main(void)
{
EXEC SQL BEGIN DECLARE SECTION;
char *dbname = "testdb"; /* database name */
char *user = "testuser"; /* connection user name */
char *connection = "tcp:postgresql://localhost:5432/testdb";
/* connection string */
char ver[256]; /* buffer to store the version string */
char *dbname = "testdb"; /* データベース名 */
char *user = "testuser"; /* 接続ユーザ名 */
char *connection = "tcp:postgresql://localhost:5432/testdb";
/* 接続文字列 */
char ver[256]; /* バージョン文字列を保持するバッファ */
EXEC SQL END DECLARE SECTION;
ECPGdebug(1, stderr);
EXEC SQL CONNECT TO :dbname USER :user;
EXEC SQL SELECT pg_catalog.set_config('search_path', '', false); EXEC SQL COMMIT;
EXEC SQL SELECT version() INTO :ver;
EXEC SQL DISCONNECT;
printf("version: %s\n", ver);
EXEC SQL CONNECT TO :connection USER :user;
EXEC SQL SELECT pg_catalog.set_config('search_path', '', false); EXEC SQL COMMIT;
EXEC SQL SELECT version() INTO :ver;
EXEC SQL DISCONNECT;
printf("version: %s\n", ver);
return 0;
}
<command>CONNECT</command> is specified in the SQL standard, but
the format of the connection parameters is
implementation-specific.
CONNECT
は標準SQLで規定されていますが、接続パラメータの書式は実装に特化しています。