mirror of
https://github.com/jackc/pgx.git
synced 2025-09-04 19:37:10 +00:00
34 lines
532 B
Plaintext
34 lines
532 B
Plaintext
PgConn
|
|
|
|
Connect - create connection. Accept dialer, connection configs, read PG envvars automatically
|
|
ConnectStrict - same as Connect, but no read env vars or try connection to multiple hosts
|
|
|
|
Prepare (and describe synchronously)
|
|
|
|
|
|
Async
|
|
|
|
SendExec
|
|
SendExecParams
|
|
SendExecPrepared
|
|
Flush
|
|
GetResults
|
|
|
|
PgResultReader - streams results
|
|
|
|
Sync
|
|
|
|
Exec
|
|
ExecParams
|
|
ExecPrepared
|
|
|
|
PgResult - reads all results and buffers
|
|
command tag
|
|
|
|
Query methods, prepare, close, and anything else that can block should be context enabled.
|
|
|
|
|
|
Possible:
|
|
Reset
|
|
|