|
| 1 | +# pgx |
| 2 | + |
| 3 | +This package is for [pgx/v5](https://pkg.go.dev/github.com/jackc/pgx/v5). A backend for the older [pgx/v4](https://pkg.go.dev/github.com/jackc/pgx/v4). is [also available](..). |
| 4 | + |
| 5 | +`pgx://user:password@host:port/dbname?query` |
| 6 | + |
| 7 | +| URL Query | WithInstance Config | Description | |
| 8 | +|------------|---------------------|-------------| |
| 9 | +| `x-migrations-table` | `MigrationsTable` | Name of the migrations table | |
| 10 | +| `x-migrations-table-quoted` | `MigrationsTableQuoted` | By default, migrate quotes the migration table for SQL injection safety reasons. This option disable quoting and naively checks that you have quoted the migration table name. e.g. `"my_schema"."schema_migrations"` | |
| 11 | +| `x-statement-timeout` | `StatementTimeout` | Abort any statement that takes more than the specified number of milliseconds | |
| 12 | +| `x-multi-statement` | `MultiStatementEnabled` | Enable multi-statement execution (default: false) | |
| 13 | +| `x-multi-statement-max-size` | `MultiStatementMaxSize` | Maximum size of single statement in bytes (default: 10MB) | |
| 14 | +| `dbname` | `DatabaseName` | The name of the database to connect to | |
| 15 | +| `search_path` | | This variable specifies the order in which schemas are searched when an object is referenced by a simple name with no schema specified. | |
| 16 | +| `user` | | The user to sign in as | |
| 17 | +| `password` | | The user's password | |
| 18 | +| `host` | | The host to connect to. Values that start with / are for unix domain sockets. (default is localhost) | |
| 19 | +| `port` | | The port to bind to. (default is 5432) | |
| 20 | +| `fallback_application_name` | | An application_name to fall back to if one isn't provided. | |
| 21 | +| `connect_timeout` | | Maximum wait for connection, in seconds. Zero or not specified means wait indefinitely. | |
| 22 | +| `sslcert` | | Cert file location. The file must contain PEM encoded data. | |
| 23 | +| `sslkey` | | Key file location. The file must contain PEM encoded data. | |
| 24 | +| `sslrootcert` | | The location of the root certificate file. The file must contain PEM encoded data. | |
| 25 | +| `sslmode` | | Whether or not to use SSL (disable\|require\|verify-ca\|verify-full) | |
| 26 | + |
| 27 | + |
| 28 | +## Upgrading from v1 |
| 29 | + |
| 30 | +1. Write down the current migration version from schema_migrations |
| 31 | +1. `DROP TABLE schema_migrations` |
| 32 | +2. Wrap your existing migrations in transactions ([BEGIN/COMMIT](https://www.postgresql.org/docs/current/static/transaction-iso.html)) if you use multiple statements within one migration. |
| 33 | +3. Download and install the latest migrate version. |
| 34 | +4. Force the current migration version with `migrate force <current_version>`. |
| 35 | + |
| 36 | +## Multi-statement mode |
| 37 | + |
| 38 | +In PostgreSQL running multiple SQL statements in one `Exec` executes them inside a transaction. Sometimes this |
| 39 | +behavior is not desirable because some statements can be only run outside of transaction (e.g. |
| 40 | +`CREATE INDEX CONCURRENTLY`). If you want to use `CREATE INDEX CONCURRENTLY` without activating multi-statement mode |
| 41 | +you have to put such statements in a separate migration files. |
0 commit comments