=========== accessor functions for PGconn ========= */
| 6829 | |
| 6830 | /* =========== accessor functions for PGconn ========= */ |
| 6831 | char * |
| 6832 | PQdb(const PGconn *conn) |
| 6833 | { |
| 6834 | if (!conn) |
| 6835 | return NULL; |
| 6836 | return conn->dbName; |
| 6837 | } |
| 6838 | |
| 6839 | char * |
| 6840 | PQuser(const PGconn *conn) |
no outgoing calls
no test coverage detected