We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ce4bd6 commit e2b6ad6Copy full SHA for e2b6ad6
1 file changed
README.md
@@ -80,7 +80,8 @@ Connecting
80
----------
81
Connect to a Postgres server using the standard URI format:
82
```rust
83
-let conn = PostgresConnection::connect("postgres://user:pass@host:port/database?arg1=val1&arg2=val2");
+let conn = PostgresConnection::connect("postgres://user:pass@host:port/database?arg1=val1&arg2=val2",
84
+ NoSsl);
85
```
86
`pass` may be omitted if not needed. `port` defaults to `5432` and `database`
87
defaults to the value of `user` if not specified. The driver supports `trust`,
0 commit comments