Skip to content
Snippets Groups Projects
Commit f95b5334 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Mention actual function names in documentation of how to pass binary

values to libpq.
parent 5d747ddd
No related branches found
No related tags found
No related merge requests found
<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.259 2008/06/23 21:10:49 momjian Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.260 2008/06/27 02:44:31 momjian Exp $ -->
<chapter id="libpq"> <chapter id="libpq">
<title><application>libpq</application> - C Library</title> <title><application>libpq</application> - C Library</title>
...@@ -1403,7 +1403,9 @@ PGresult *PQexecParams(PGconn *conn, ...@@ -1403,7 +1403,9 @@ PGresult *PQexecParams(PGconn *conn,
For example, integers must be passed in network byte For example, integers must be passed in network byte
order. Passing <type>numeric</> values requires order. Passing <type>numeric</> values requires
knowledge of the server storage format, as implemented knowledge of the server storage format, as implemented
in <filename>src/backend/utils/adt/numeric.c</>. in
<filename>src/backend/utils/adt/numeric.c::numeric_send()</> and
<filename>src/backend/utils/adt/numeric.c::numeric_recv()</>.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment