diff options
author | Michael Meskes <meskes@postgresql.org> | 2006-01-31 13:32:20 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2006-01-31 13:32:20 +0000 |
commit | 097df388b72584501762ac4c400dccff8a3671eb (patch) | |
tree | 6ddd2204bf0147280e057504df76620730f46436 | |
parent | 0dd0e289c70783a98eda97bdbda01ae2e90d149c (diff) | |
download | postgresql-097df388b72584501762ac4c400dccff8a3671eb.tar.gz postgresql-097df388b72584501762ac4c400dccff8a3671eb.zip |
Removed single quotes from connect to example.
-rw-r--r-- | doc/src/sgml/ecpg.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 2406200a1c5..2cb53b99930 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.71 2005/11/04 23:13:59 petere Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.72 2006/01/31 13:32:20 meskes Exp $ --> <chapter id="ecpg"> @@ -180,7 +180,7 @@ EXEC SQL CONNECT TO <replaceable>target</replaceable> <optional>AS <replaceable> <programlisting> EXEC SQL CONNECT TO mydb@sql.mydomain.com; -EXEC SQL CONNECT TO 'unix:postgresql://sql.mydomain.com/mydb' AS myconnection USER john; +EXEC SQL CONNECT TO unix:postgresql://sql.mydomain.com/mydb AS myconnection USER john; EXEC SQL BEGIN DECLARE SECTION; const char *target = "mydb@sql.mydomain.com"; |