Database-forbindelsesstreng-generator
Generér forbindelsesstrenge til MySQL, PostgreSQL, MongoDB, Redis, MSSQL, SQLite og Oracle med konfigurerbare indstillinger
Al behandling sker i din browser. Ingen data uploades.
Database-forbindelsesstreng-generator
Generér forbindelsesstrenge til MySQL, PostgreSQL, MongoDB, Redis, MSSQL, SQLite og Oracle med konfigurerbare indstillinger
🔒Al behandling sker i din browser. Ingen data uploades.
Databasetype
PostgreSQL
Konfiguration
key=value&key2=value2
Genererede forbindelsesstrenge
URI
postgresql://admin:secret@localhost:5432/mydb
Nøgle-værdi
host=localhost port=5432 dbname=mydb user=admin password=secret
JDBC
jdbc:postgresql://localhost:5432/mydb?user=admin&password=secret
Python (psycopg2)
psycopg2.connect(
host="localhost",
port=5432,
dbname="mydb",
user="admin",
password="secret"
)