projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0dd0e28
)
Removed single quotes from connect to example.
author
Michael Meskes
Tue, 31 Jan 2006 13:32:20 +0000
(13:32 +0000)
committer
Michael Meskes
Tue, 31 Jan 2006 13:32:20 +0000
(13:32 +0000)
doc/src/sgml/ecpg.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/ecpg.sgml
b/doc/src/sgml/ecpg.sgml
index 2406200a1c5cadd463f5d4c9841cce748c84fa36..2cb53b99930444af56cb7e6a19b97b8b7fbb3cb5 100644
(file)
--- a/
doc/src/sgml/ecpg.sgml
+++ b/
doc/src/sgml/ecpg.sgml
@@
-1,5
+1,5
@@
@@
-180,7
+180,7
@@
EXEC SQL CONNECT TO
target
AS
EXEC SQL CONNECT TO
[email protected]
;
-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 = "
[email protected]
";