diff options
author | Bruce Momjian <bruce@momjian.us> | 2008-06-23 21:10:49 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2008-06-23 21:10:49 +0000 |
commit | 2296e299986aece2cdf0a4bff273bc505fb81368 (patch) | |
tree | 57411c65224aa52717ed2d31eb4d458460e18bb1 /src | |
parent | 01930cea035d4fd9e490a2d1159b26fbd2f43ef3 (diff) | |
download | postgresql-2296e299986aece2cdf0a4bff273bc505fb81368.tar.gz postgresql-2296e299986aece2cdf0a4bff273bc505fb81368.zip |
Add libpq comment about how to determine the format used for passing
binary values.
Add comments to libpq C function for parameter passing.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index 25ad0e4a1a6..50b5c7bcf7c 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.195 2008/05/29 22:02:44 tgl Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.196 2008/06/23 21:10:49 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -976,12 +976,13 @@ PQsendQueryGuts(PGconn *conn, goto sendFailed; } - /* construct the Bind message */ + /* Construct the Bind message */ if (pqPutMsgStart('B', false, conn) < 0 || pqPuts("", conn) < 0 || pqPuts(stmtName, conn) < 0) goto sendFailed; + /* Send parameter formats */ if (nParams > 0 && paramFormats) { if (pqPutInt(nParams, 2, conn) < 0) @@ -1001,6 +1002,7 @@ PQsendQueryGuts(PGconn *conn, if (pqPutInt(nParams, 2, conn) < 0) goto sendFailed; + /* Send parameters */ for (i = 0; i < nParams; i++) { if (paramValues && paramValues[i]) |