diff options
Diffstat (limited to 'connectivity/README')
-rw-r--r-- | connectivity/README | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/connectivity/README b/connectivity/README index ebae354523ca..40525a522227 100644 --- a/connectivity/README +++ b/connectivity/README @@ -2,6 +2,26 @@ Contains database pieces, drivers, etc. [[dbaccess]] builds UI on top of this. +=== PostgreSQL === + +For testing, use: + +podman pull postgres:latest +podman run --name=postgres -e POSTGRES_PASSWORD=foobarbaz -p 127.0.0.1:5432:5432 postgres:latest + +In Base, Connect to an existing database, select PostgreSQL: + +URL: host=127.0.0.1 port=5432 dbname=postgres +User: postgres +Password: foobarbaz + +podman stop postgres +podman rm postgres + +In order to test SCRAM authentication, create the container like this: + +podman run --name=postgres -e POSTGRES_PASSWORD=foobarbaz -e POSTGRES_INITDB_ARGS=--auth-host=scram-sha-256 -e POSTGRES_HOST_AUTH_METHOD=scram-sha-256 -p 127.0.0.1:5432:5432 postgres:latest + === mysql_test === - The CppunitTest_mysql_test unit test can be used to test the mysqlc |