mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Update libpq PQcmdTuples() and PQcmdStatus() docs: remove const param
mention to match code and include files.
This commit is contained in:
		@@ -1,5 +1,5 @@
 | 
				
			|||||||
<!--
 | 
					<!--
 | 
				
			||||||
$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.98.2.1 2002/11/06 23:30:39 petere Exp $
 | 
					$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.98.2.2 2002/11/08 05:10:00 momjian Exp $
 | 
				
			||||||
-->
 | 
					-->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 <chapter id="libpq">
 | 
					 <chapter id="libpq">
 | 
				
			||||||
@@ -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);
 | 
				
			|||||||
<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
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user