Chapter 34. libpq - C Library
Table of Contents
- 34.1. Database Connection Control Functions
- 34.2. Connection Status Functions
- 34.3. Command Execution Functions
- 34.4. Asynchronous Command Processing
- 34.5. Retrieving Query Results Row-By-Row
- 34.6. Canceling Queries in Progress
- 34.7. The Fast-Path Interface
- 34.8. Asynchronous Notification
- 34.9. Functions Associated with the
COPY
Command - 34.5. Retrieving Query Results Row-By-Row
- 34.10. Control Functions
- 34.11. Miscellaneous Functions
- 34.12. Notice Processing
- 34.13. Event System
- 34.11. Miscellaneous Functions
- 34.14. Environment Variables
- 34.15. The Password File
- 34.16. The Connection Service File
- 34.17. LDAP Lookup of Connection Parameters
- 34.18. SSL Support
- 34.15. The Password File
- 34.19. Behavior in Threaded Programs
- 34.20. Buildinglibpq Programs
- 34.21. Example Programs
- 34.20. Buildinglibpq Programs
libpq is theC application programmer's interface toPostgreSQL.libpq is a set of library functions that allow client programs to pass queries to thePostgreSQL backend server and to receive the results of these queries. libpq is also the underlying engine for several otherPostgreSQL application interfaces, including those written for C++, Perl, Python, Tcl andECPG. So some aspects oflibpq's behavior will be important to you if you use one of those packages. In particular,Section 34.14,Section 34.15 andSection 34.18 describe behavior that is visible to the user of any application that useslibpq. Some short programs are included at the end of this chapter (Section 34.21) to show how to write programs that uselibpq. There are also several complete examples oflibpq applications in the directory Client programs that uselibpq must include the header filesrc/test/examples
in the source code distribution.libpq-fe.h
and must link with thelibpq library.