OSDN Git Service

Removed single quotes from connect to example.
authorMichael Meskes <meskes@postgresql.org>
Tue, 31 Jan 2006 13:32:20 +0000 (13:32 +0000)
committerMichael Meskes <meskes@postgresql.org>
Tue, 31 Jan 2006 13:32:20 +0000 (13:32 +0000)
doc/src/sgml/ecpg.sgml

index 2406200..2cb53b9 100644 (file)
@@ -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";