ConnString returns the connection string as parsed by pgx.ParseConfig into pgx.ConnConfig.
()
| 61 | |
| 62 | // ConnString returns the connection string as parsed by pgx.ParseConfig into pgx.ConnConfig. |
| 63 | func (cc *ConnConfig) ConnString() string { return cc.connString } |
| 64 | |
| 65 | // Conn is a PostgreSQL connection handle. It is not safe for concurrent usage. Use a connection pool to manage access |
| 66 | // to multiple database connections from multiple goroutines. |
no outgoing calls