Config returns a copy of config that was used to establish this connection.
()
| 466 | |
| 467 | // Config returns a copy of config that was used to establish this connection. |
| 468 | func (c *Conn) Config() *ConnConfig { return c.config.Copy() } |
| 469 | |
| 470 | // Exec executes sql. sql can be either a prepared statement name or an SQL string. arguments should be referenced |
| 471 | // positionally from the sql string as $1, $2, etc. |