summaryrefslogtreecommitdiff
path: root/src/man/libpq.3
AgeCommit message (Collapse)Author
1999-08-08Remove old man pages. All info is in new man pages or other docs.Thomas G. Lockhart
1999-05-21Minor updates to libpq documentation.Tom Lane
1999-04-17Add res checking to libpq examples, from Dan Merillat.Bruce Momjian
1998-10-14New PGQUERY_LIMIT environment variable, and doc changes.Bruce Momjian
1998-08-15Include a sentence in the top pointing to the new docs.Thomas G. Lockhart
pgbuiltin.3 is obsolete for sure, and libpq.3 can become so since the size and scope of this man page is not appropriate in a man page format.
1998-08-09The attached patch implements some changes that were discussed aBruce Momjian
couple weeks ago on the hackers and interfaces lists: 1. When the backend sends a NOTICE message and closes the connection (typically, because it was told to by the postmaster after another backend coredumped), libpq will now print the notice and close the connection cleanly. Formerly, the frontend app would usually terminate ungracefully due to a SIGPIPE. (I am not sure if 6.3.2 behaved that way, but the current cvs sources do...) 2. libpq's various printouts to stderr are now fed through a single "notice processor" routine, which can be overridden by the application to direct notices someplace else. This should ease porting libpq to Windows. I also noticed and fixed a problem in PQprint: when sending output to a pager subprocess, it would disable SIGPIPE in case the pager terminates early (this is good) --- but afterwards it reset SIGPIPE to SIG_DFL, rather than restoring the application's prior setting (bad). regards, tom lane
1998-07-15Update word.Bruce Momjian
1998-07-15Add PGUSER to man page.Bruce Momjian
1998-07-14More updates for typmod int32 change. From Tom Lane.Bruce Momjian
1998-07-09From: Tom Lane <tgl@sss.pgh.pa.us>Marc G. Fournier
Attached are diffs (from current cvs sources) to bring libpq.sgml and libpq.3 up to date. It appears that at various times in the past, people have made edits to one or the other of these files but not both. I propagated some changes from each into the other, but I don't think I caught every inconsistency. It'd be real nice if the man pages could be automatically generated from the SGML...
1998-07-04Add PQsetdbLogin() and cleanup.Bruce Momjian
1998-06-24cleanupBruce Momjian
1998-04-26Re-apply Darren's char2-16 removal code.Bruce Momjian
1998-04-07Back out char2-char16 removal. Add later.Bruce Momjian
1998-03-30The following uuencoded, gzip'd file will ...Bruce Momjian
1. Remove the char2, char4, char8 and char16 types from postgresql 2. Change references of char16 to name in the regression tests. 3. Rename the char16.sql regression test to name.sql. 4. Modify the regression test scripts and outputs to match up. Might require new regression.{SYSTEM} files... Darren King
1998-03-23Manual page fixes.Bruce Momjian
1998-01-26From: Phil Thompson <phil@river-bank.demon.co.uk>Marc G. Fournier
I've completed the patch to fix the protocol and authentication issues I was discussing a couple of weeks ago. The particular changes are: - the protocol has a version number - network byte order is used throughout - the pg_hba.conf file is used to specify what method is used to authenticate a frontend (either password, ident, trust, reject, krb4 or krb5) - support for multiplexed backends is removed - appropriate changes to man pages - the -a switch to many programs to specify an authentication service no longer has any effect - the libpq.so version number has changed to 1.1 The new backend still supports the old protocol so old interfaces won't break.
1997-12-04Update description for PGHOST and unix domain sockets. Add warning for ↵Bruce Momjian
failed connections.
1997-11-14Add mention of PGDATESTYLE, PGTZ, PGCOSTHEAP, PGCOSTINDEX, PGRPLANS, PGGEQOThomas G. Lockhart
as initialization environment variables.
1997-11-01Fix acl error, and remove duplicate pqtrace.Bruce Momjian
1997-10-22Fix \. in manual page.Bruce Momjian
1997-10-17New function PQcmdTuples.Bruce Momjian
1997-10-16Cleanups for 6.2.1.Bruce Momjian
1997-10-01Update PQntuples now returns rows affected.Bruce Momjian
1996-12-11Rename postgres95 to PostgreSQL. Add comment for SELECT NULLBruce Momjian
1996-11-27Convert ' to " in dates. Update example code to show empty query as "".Bruce Momjian
1996-11-15Changed " to '. Removed bug section from psql. added reminder for log callBruce Momjian
in built-in. fixed backslases in source for libpq.
1996-11-14moved man pages here, as requested by BryanMarc G. Fournier