From e2b6ad6be19402288bf2d513e8e2d74de9a1039a Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 10 Nov 2013 18:01:59 -0800 Subject: [PATCH] One more doc update --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f1fe458..885aafbb 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,8 @@ Connecting ---------- Connect to a Postgres server using the standard URI format: ```rust -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", + NoSsl); ``` `pass` may be omitted if not needed. `port` defaults to `5432` and `database` defaults to the value of `user` if not specified. The driver supports `trust`,