projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d747dd
)
Mention actual function names in documentation of how to pass binary
author
Bruce Momjian
Fri, 27 Jun 2008 02:44:31 +0000
(
02:44
+0000)
committer
Bruce Momjian
Fri, 27 Jun 2008 02:44:31 +0000
(
02:44
+0000)
values to libpq.
doc/src/sgml/libpq.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/libpq.sgml
b/doc/src/sgml/libpq.sgml
index 629e501b8ac7341d83679211b577da9fb97ef65a..deb052e5c49421d262aa81be20fae0728beee3e9 100644
(file)
--- a/
doc/src/sgml/libpq.sgml
+++ b/
doc/src/sgml/libpq.sgml
@@
-1,4
+1,4
@@
-
+
libpq
- C Library
@@
-1403,7
+1403,9
@@
PGresult *PQexecParams(PGconn *conn,
For example, integers must be passed in network byte
order. Passing
numeric> values requires
knowledge of the server storage format, as implemented
- in
src/backend/utils/adt/numeric.c>.
+ in
+
src/backend/utils/adt/numeric.c::numeric_send()> and
+
src/backend/utils/adt/numeric.c::numeric_recv()>.