From: Bruce Momjian Date: Fri, 27 Jun 2008 02:44:31 +0000 (+0000) Subject: Mention actual function names in documentation of how to pass binary X-Git-Tag: REL8_4_BETA1~1233 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f95b5334a759c9e225a6c8e701899c5cd601541a;p=postgresql Mention actual function names in documentation of how to pass binary values to libpq. --- diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 629e501b8a..deb052e5c4 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -1,4 +1,4 @@ - + <application>libpq</application> - 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().