Address = "127.0.0.1"; Login = "bayselonarrend"; Password = "12we..."; Base = "postgres"; ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, Base, Login, Password); Result = OPI_PostgreSQL.CreateConnection(ConnectionString); OPI_PostgreSQL.CloseConnection(Result); // With TLS Address = "api.athenaeum.digital"; Port = "5433"; ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, Base, Login, Password, Port); TLSSettings = OPI_PostgreSQL.GetTlsSettings(False); Result = OPI_PostgreSQL.CreateConnection(ConnectionString, TLSSettings); OPI_PostgreSQL.CloseConnection(Result);