Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
88f528c3
Commit
88f528c3
authored
22 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update libpq PQcmdTuples() and PQcmdStatus() docs, remove const param
doc mention to match code and include files.
parent
02608cbc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/libpq.sgml
+3
-3
3 additions, 3 deletions
doc/src/sgml/libpq.sgml
with
3 additions
and
3 deletions
doc/src/sgml/libpq.sgml
+
3
−
3
View file @
88f528c3
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.9
8
2002/11/0
3
0
1:30:46
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.9
9
2002/11/0
8
0
5:03:11
momjian Exp $
-->
-->
<chapter id="libpq">
<chapter id="libpq">
...
@@ -1210,7 +1210,7 @@ function is no longer actively supported.
...
@@ -1210,7 +1210,7 @@ function is no longer actively supported.
Returns the command status string from the SQL command that
Returns the command status string from the SQL command that
generated the <structname>PGresult</structname>.
generated the <structname>PGresult</structname>.
<synopsis>
<synopsis>
char * PQcmdStatus(
const
PGresult *res);
char * PQcmdStatus(PGresult *res);
</synopsis>
</synopsis>
</para>
</para>
</listitem>
</listitem>
...
@@ -1220,7 +1220,7 @@ char * PQcmdStatus(const PGresult *res);
...
@@ -1220,7 +1220,7 @@ char * PQcmdStatus(const PGresult *res);
<function>PQcmdTuples</function>
<function>PQcmdTuples</function>
Returns the number of rows affected by the SQL command.
Returns the number of rows affected by the SQL command.
<synopsis>
<synopsis>
char * PQcmdTuples(
const
PGresult *res);
char * PQcmdTuples(PGresult *res);
</synopsis>
</synopsis>
If the <acronym>SQL</acronym> command that generated the
If the <acronym>SQL</acronym> command that generated the
<structname>PGresult</structname> was INSERT, UPDATE or DELETE, this returns a
<structname>PGresult</structname> was INSERT, UPDATE or DELETE, this returns a
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment