1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Change function name PQclientencoding to PQclientEncoding since

it seems more suitable for the naming convention in libpq.

New function PQsetClientEncoding added. It makes possible to change
the client encoding on the fly without setting PGCLIENTENCODING.
This commit is contained in:
Tatsuo Ishii
2000-02-05 12:33:22 +00:00
parent b304b4a90e
commit d4e62e5ded
3 changed files with 49 additions and 6 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: libpq-fe.h,v 1.58 2000/01/29 16:58:51 petere Exp $
* $Id: libpq-fe.h,v 1.59 2000/02/05 12:33:22 ishii Exp $
*
*-------------------------------------------------------------------------
*/
@@ -218,7 +218,8 @@ extern "C"
extern const char *PQerrorMessage(const PGconn *conn);
extern int PQsocket(const PGconn *conn);
extern int PQbackendPID(const PGconn *conn);
extern int PQclientencoding(const PGconn *conn);
extern int PQclientEncoding(const PGconn *conn);
extern int PQsetClientEncoding(PGconn *conn, const char *encoding);
/* Enable/disable tracing */
extern void PQtrace(PGconn *conn, FILE *debug_port);