libpq.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:61k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. <Chapter Id="libpq-chapter">
  2. <Title id="libpq">libpq</Title>
  3. <Para>
  4. <FileName>libpq</FileName> is the C application programmer's interface to
  5. <ProductName>Postgres</ProductName>.  <FileName>libpq</FileName> is a set
  6. of library routines that allow client programs to pass queries to the
  7. <ProductName>Postgres</ProductName> backend server and to receive the
  8. results of these queries.  <FileName>libpq</FileName> is also the
  9. underlying engine for several other <ProductName>Postgres</ProductName>
  10. application interfaces, including <FileName>libpq++</FileName> (C++),
  11. <FileName>libpgtcl</FileName> (Tcl), <FileName>perl5</FileName>, and
  12. <FileName>ecpg</FileName>.  So some aspects of libpq's behavior will be
  13. important to you if you use one of those packages.
  14. Three short programs are included at the end of this section to show how
  15. to write programs that use <FileName>libpq</FileName>.  There are several
  16. complete examples of <FileName>libpq</FileName> applications in the
  17. following directories:
  18. <ProgramListing>
  19.     ../src/test/regress
  20.     ../src/test/examples
  21.     ../src/bin/psql
  22. </ProgramListing>
  23. </Para>
  24. <Para>
  25. Frontend programs which use <FileName>libpq</FileName> must include the
  26. header file <FileName>libpq-fe.h</FileName> and must link with the
  27. <FileName>libpq</FileName> library.
  28. </Para>
  29. <Sect1>
  30. <Title>Database Connection Functions</Title>
  31. <Para>
  32.      The following routines deal with making a connection to
  33.      a <ProductName>Postgres</ProductName> backend server.  The application
  34.      program can have several backend connections open at one time.
  35.      (One reason to do that is to access more than one database.)
  36.      Each connection is represented by a PGconn object which is obtained
  37.      from PQconnectdb() or PQsetdbLogin().  NOTE that these functions
  38.      will always return a non-null object pointer, unless perhaps
  39.      there is too little memory even to allocate the PGconn object.
  40.      The  PQstatus function should be called
  41.      to check whether  a  connection  was  successfully made
  42.      before queries are sent via the connection object.
  43. <ItemizedList>
  44. <ListItem>
  45. <Para>
  46. <Function>PQsetdbLogin</Function> 
  47.           Makes a new connection to a backend.
  48. <synopsis>
  49. PGconn *PQsetdbLogin(const char *pghost,
  50.                 const char *pgport,
  51.                 const char *pgoptions,
  52.                 const char *pgtty,
  53.                 const char *dbName,
  54.                 const char *login,
  55.                 const char *pwd)
  56. </synopsis>
  57.           If  any  argument  is NULL, then the corresponding
  58.           environment variable (see "Environment Variables" section)
  59.           is checked. If the  environment  variable
  60.   is  also  not  set, then hardwired defaults are used.
  61.           The return value is a pointer to an abstract struct
  62.           representing the connection to the backend.
  63. </Para>
  64. </ListItem>
  65. <ListItem>
  66. <Para>
  67. <Function>PQsetdb</Function> 
  68.           Makes a new connection to a backend.
  69. <synopsis>
  70. PGconn *PQsetdb(char *pghost,
  71.                 char *pgport,
  72.                 char *pgoptions,
  73.                 char *pgtty,
  74.                 char *dbName)
  75. </synopsis>
  76.           This is a macro that calls PQsetdbLogin() with null pointers
  77.           for the login and pwd parameters.  It is provided primarily
  78.   for backward compatibility with old programs.
  79. </Para>
  80. </ListItem>
  81. <ListItem>
  82. <Para>
  83. <Function>PQconnectdb</Function> 
  84.           Makes a new connection to a backend.
  85. <synopsis>
  86. PGconn *PQconnectdb(const char *conninfo)
  87. </synopsis>
  88.           This routine opens a new database connection using parameters
  89.           taken from a string.  Unlike PQsetdbLogin(), the parameter set
  90.           can be extended without changing the function signature, so use
  91.           of this routine is encouraged for new application
  92.   programming.  The passed string can be empty to use all default
  93.           parameters, or it can contain one or more parameter settings
  94.           separated by whitespace.  Each parameter setting is in the form
  95.           keyword = value.  (To write a null value or a value containing
  96.           spaces, surround it with single quotes, eg, keyword = 'a value'.
  97.           Single quotes within the value must be written as '.  Spaces
  98.           around the equal sign are optional.)  The currently recognized
  99.           parameter keywords are:
  100. <ItemizedList>
  101. <ListItem>
  102. <Para>
  103. <Acronym>host</Acronym> -- host to connect to.
  104. If a non-zero-length string is specified, TCP/IP communication is used.
  105. Without a host name, libpq will connect using a local Unix domain socket.
  106. </Para>
  107. </ListItem>
  108. <ListItem>
  109. <Para>
  110. <Acronym>port</Acronym> -- port number to connect to at the server host,
  111. or socket filename extension for Unix-domain connections.
  112. </Para>
  113. </ListItem>
  114. <ListItem>
  115. <Para>
  116. <Acronym>dbname</Acronym> -- database name.
  117. </Para>
  118. </ListItem>
  119. <ListItem>
  120. <Para>
  121. <Acronym>user</Acronym> -- user name for authentication.
  122. </Para>
  123. </ListItem>
  124. <ListItem>
  125. <Para>
  126. <Acronym>password</Acronym> -- 
  127. password used if the backend demands password authentication.
  128. </Para>
  129. </ListItem>
  130. <ListItem>
  131. <Para>
  132. <Acronym>authtype</Acronym> -- authorization type.  (No longer used,
  133. since the backend now chooses how to authenticate users.  libpq still
  134. accepts and ignores this keyword for backward compatibility.)
  135. </Para>
  136. </ListItem>
  137. <ListItem>
  138. <Para>
  139. <Acronym>options</Acronym> -- trace/debug options to send to backend.
  140. </Para>
  141. </ListItem>
  142. <ListItem>
  143. <Para>
  144. <Acronym>tty</Acronym> -- file or tty for optional debug output from backend.
  145. </Para>
  146. </ListItem>
  147. </ItemizedList>
  148. Like PQsetdbLogin, PQconnectdb uses environment variables or built-in
  149. default values for unspecified options.
  150. </Para>
  151. </ListItem>
  152. <ListItem>
  153. <Para>
  154. <Function>PQconndefaults</Function>  
  155.          Returns the default connection options.
  156. <synopsis>
  157. PQconninfoOption *PQconndefaults(void)
  158. struct PQconninfoOption
  159.         {
  160.                 char   *keyword;   /* The keyword of the option */
  161.                 char   *envvar;    /* Fallback environment variable name */
  162.                 char   *compiled;  /* Fallback compiled in default value */
  163.                 char   *val;       /* Option's value */
  164.                 char   *label;     /* Label for field in connect dialog */
  165.                 char   *dispchar;  /* Character to display for this field
  166.                                       in a connect dialog. Values are:
  167.                                       ""        Display entered value as is
  168.                                       "*"       Password field - hide value
  169.                                       "D"       Debug options - don't
  170.                                       create a field by default */
  171.                 int     dispsize;  /* Field size in characters for dialog */
  172.         };
  173. </synopsis>
  174. Returns the address of the connection options structure.  This may
  175. be used to determine all possible PQconnectdb options and their
  176. current default values.  The return value points to an array of
  177. PQconninfoOption structs, which ends with an entry having a NULL
  178. keyword pointer.  Note that the default values ("val" fields)
  179.         will depend on environment variables and other context.
  180.         Callers must treat the connection options data as read-only.
  181. </Para>
  182. </ListItem>
  183. <ListItem>
  184. <Para>
  185. <Function>PQfinish</Function>
  186.           Close  the  connection to the backend.  Also frees
  187.           memory used by the PGconn object.
  188. <synopsis>
  189. void PQfinish(PGconn *conn)
  190. </synopsis>
  191. Note that even if the backend connection attempt fails (as
  192. indicated by PQstatus), the application should call PQfinish
  193. to free the memory used by the PGconn object.
  194. The PGconn pointer should not be used after PQfinish has been called.
  195. </Para>
  196. </ListItem>
  197. <ListItem>
  198. <Para>
  199. <Function>PQreset</Function>
  200.           Reset the communication  port  with  the  backend.
  201. <synopsis>
  202. void PQreset(PGconn *conn)
  203. </synopsis>
  204.           This function will close the connection
  205.           to the backend and attempt to  reestablish  a  new
  206.           connection to the same postmaster, using all the same
  207.   parameters previously used.  This may be useful for
  208.   error recovery if a working connection is lost.
  209. </Para>
  210. </ListItem>
  211. </ItemizedList>
  212. </Para>
  213. <Para>
  214. <FileName>libpq</FileName> application programmers should be careful to
  215. maintain the PGconn abstraction.  Use the accessor functions below to get
  216. at the contents of PGconn.  Avoid directly referencing the fields of the
  217. PGconn structure because they are subject to change in the future.
  218. (Beginning in <ProductName>Postgres</ProductName> release 6.4, the
  219. definition of struct PGconn is not even provided in libpq-fe.h.  If you
  220. have old code that accesses PGconn fields directly, you can keep using it
  221. by including libpq-int.h too, but you are encouraged to fix the code
  222. soon.)
  223. <ItemizedList>
  224. <ListItem>
  225. <Para>
  226. <Function>PQdb</Function>  
  227.          Returns the database name of the connection.
  228. <synopsis>
  229. char *PQdb(PGconn *conn)
  230. </synopsis>
  231. PQdb and the next several functions return the values established
  232. at connection.  These values are fixed for the life of the PGconn
  233. object.
  234. </Para>
  235. </ListItem>
  236. <ListItem>
  237. <Para>
  238. <Function>PQuser</Function>
  239.          Returns the user name of the connection.
  240. <synopsis>
  241. char *PQuser(PGconn *conn)
  242. </synopsis>
  243. </Para>
  244. </ListItem>
  245. <ListItem>
  246. <Para>
  247. <Function>PQpass</Function>
  248.          Returns the password of the connection.
  249. <synopsis>
  250. char *PQpass(PGconn *conn)
  251. </synopsis>
  252. </Para>
  253. </ListItem>
  254. <ListItem>
  255. <Para>
  256. <Function>PQhost</Function>
  257.          Returns the server host name of the connection.
  258. <synopsis>
  259. char *PQhost(PGconn *conn)
  260. </synopsis>
  261. </Para>
  262. </ListItem>
  263. <ListItem>
  264. <Para>
  265. <Function>PQport</Function>
  266.          Returns the port of the connection.
  267. <synopsis>
  268. char *PQport(PGconn *conn)
  269. </synopsis>
  270. </Para>
  271. </ListItem>
  272. <ListItem>
  273. <Para>
  274. <Function>PQtty</Function>
  275.          Returns the debug tty of the connection.
  276. <synopsis>
  277. char *PQtty(PGconn *conn)
  278. </synopsis>
  279. </Para>
  280. </ListItem>
  281. <ListItem>
  282. <Para>
  283. <Function>PQoptions</Function>
  284.        Returns the backend options used in  the  connection.
  285. <synopsis>
  286. char *PQoptions(PGconn *conn)
  287. </synopsis>
  288. </Para>
  289. </ListItem>
  290. <ListItem>
  291. <Para>
  292. <Function>PQstatus</Function>
  293.          Returns the status of the connection. 
  294.          The status can be CONNECTION_OK or CONNECTION_BAD.
  295. <synopsis>
  296. ConnStatusType PQstatus(PGconn *conn)
  297. </synopsis>
  298. </Para>
  299. <Para>
  300. A failed connection attempt is signaled by status CONNECTION_BAD.
  301. Ordinarily, an OK status will remain so until PQfinish, but a
  302. communications failure might result in the status changing to
  303. CONNECTION_BAD prematurely.  In that case the application could
  304. try to recover by calling PQreset.
  305. </Para>
  306. </ListItem>
  307. <ListItem>
  308. <Para>
  309. <Function>PQerrorMessage</Function>
  310.          Returns the error message most recently generated by
  311.          an operation on the connection.
  312. <synopsis>
  313. char *PQerrorMessage(PGconn* conn);
  314. </synopsis>
  315. </Para>
  316. <Para>
  317. Nearly all libpq functions will set PQerrorMessage if they fail.
  318. Note that by libpq convention, a non-empty PQerrorMessage will
  319. include a trailing newline.
  320. </Para>
  321. </ListItem>
  322. <ListItem>
  323. <Para>
  324. <Function>PQbackendPID</Function>
  325.          Returns the process ID of the backend server handling this
  326.  connection.
  327. <synopsis>
  328. int PQbackendPID(PGconn *conn);
  329. </synopsis>
  330. The backend PID is useful for debugging purposes and for comparison
  331. to NOTIFY messages (which include the PID of the notifying backend).
  332. Note that the PID belongs to a process executing on the database
  333. server host, not the local host!
  334. </Para>
  335. </ListItem>
  336. </ItemizedList>
  337. </Para>
  338. </Sect1>
  339. <Sect1>
  340. <Title>Query Execution Functions</Title>
  341. <Para>
  342. Once a connection to a database server has been successfully
  343. established, the functions described here are used to perform
  344. SQL queries and commands.
  345. <ItemizedList>
  346. <ListItem>
  347. <Para>
  348. <Function>PQexec</Function>
  349.           Submit a query to <ProductName>Postgres</ProductName>
  350.           and wait for the result.
  351. <synopsis>
  352. PGresult *PQexec(PGconn *conn,
  353.                  const char *query);
  354. </synopsis>
  355.           Returns  a  PGresult pointer or possibly a NULL pointer.
  356.           A non-NULL pointer will generally be returned except in
  357.           out-of-memory conditions or serious errors such as inability
  358.           to send the query to the backend.
  359.           If a NULL is returned, it
  360.   should be treated like a PGRES_FATAL_ERROR result.  Use
  361.   PQerrorMessage to get more information about the error.
  362. </Para>
  363. </ListItem>
  364. </ItemizedList>
  365. </Para>
  366. <Para>
  367. The <Function>PGresult</Function> structure encapsulates the query result
  368. returned by the backend.
  369. <FileName>libpq</FileName> application programmers should be careful to
  370. maintain the PGresult abstraction.  Use the accessor functions below to get
  371. at the contents of PGresult.  Avoid directly referencing the fields of the
  372. PGresult structure because they are subject to change in the future.
  373. (Beginning in <ProductName>Postgres</ProductName> release 6.4, the
  374. definition of struct PGresult is not even provided in libpq-fe.h.  If you
  375. have old code that accesses PGresult fields directly, you can keep using it
  376. by including libpq-int.h too, but you are encouraged to fix the code
  377. soon.)
  378. <ItemizedList>
  379. <ListItem>
  380. <Para>
  381. <Function>PQresultStatus</Function>
  382.           Returns the result status of the query.  PQresultStatus can return one of the following values:
  383. <synopsis>
  384. PGRES_EMPTY_QUERY,
  385. PGRES_COMMAND_OK,       /* the query was a command returning no data */
  386. PGRES_TUPLES_OK,        /* the query successfully returned tuples */
  387. PGRES_COPY_OUT,         /* Copy Out (from server) data transfer started */
  388. PGRES_COPY_IN,          /* Copy In (to server) data transfer started */
  389. PGRES_BAD_RESPONSE,     /* an unexpected response was received */
  390. PGRES_NONFATAL_ERROR,
  391. PGRES_FATAL_ERROR
  392. </synopsis>
  393.           If  the result status is PGRES_TUPLES_OK, then the
  394.           routines described below can be  used  to  retrieve  the
  395.           tuples returned by the query.  Note that a SELECT that
  396.   happens to retrieve zero tuples still shows PGRES_TUPLES_OK.
  397.   PGRES_COMMAND_OK is for commands that can never return tuples.
  398. </Para>
  399. </ListItem>
  400. <ListItem>
  401. <Para>
  402. <Function>PQresStatus</Function>
  403. Converts the enumerated type returned by PQresultStatus into
  404. a string constant describing the status code.
  405. <synopsis>
  406. const char *PQresStatus(ExecStatusType status);
  407. </synopsis>
  408. Older code may perform this same operation by direct access to a constant
  409. string array inside libpq,
  410. <synopsis>
  411. extern const char * const pgresStatus[];
  412. </synopsis>
  413. However, using the function is recommended instead, since it is more portable
  414. and will not fail on out-of-range values.
  415. </Para>
  416. </ListItem>
  417. <ListItem>
  418. <Para>
  419. <Function>PQresultErrorMessage</Function>
  420. returns the error message associated with the query, or an empty string
  421. if there was no error.
  422. <synopsis>
  423. const char *PQresultErrorMessage(PGresult *res);
  424. </synopsis>
  425. Immediately following a PQexec or PQgetResult call, PQerrorMessage
  426. (on the connection) will return the same string as PQresultErrorMessage
  427. (on the result).  However, a PGresult will retain its error message
  428. until destroyed, whereas the connection's error message will change when
  429. subsequent operations are done.  Use PQresultErrorMessage when you want to
  430. know the status associated with a particular PGresult; use PQerrorMessage
  431. when you want to know the status from the latest operation on the connection.
  432. </Para>
  433. </ListItem>
  434. <ListItem>
  435. <Para>
  436. <Function>PQntuples</Function>
  437.           Returns the number of tuples (instances)
  438.           in the query result.
  439. <synopsis>
  440. int PQntuples(PGresult *res);
  441. </synopsis>
  442. </Para>
  443. </ListItem>
  444. <ListItem>
  445. <Para>
  446. <Function>PQnfields</Function>
  447.           Returns   the   number    of    fields
  448.           (attributes) in each tuple of the query result.
  449. <synopsis>
  450. int PQnfields(PGresult *res);
  451. </synopsis>
  452. </Para>
  453. </ListItem>
  454. <ListItem>
  455. <Para>
  456. <Function>PQbinaryTuples</Function>
  457.           Returns 1 if the PGresult contains binary tuple data,
  458.   0 if it contains ASCII data.
  459. <synopsis>
  460. int PQbinaryTuples(PGresult *res);
  461. </synopsis>
  462. Currently, binary tuple data can only be returned by a query that
  463. extracts data from a <Acronym>BINARY</Acronym> cursor.
  464. </Para>
  465. </ListItem>
  466. <ListItem>
  467. <Para>
  468. <Function>PQfname</Function>
  469.  Returns the field (attribute) name associated with the given field  index.
  470.  Field  indices start at 0.
  471. <synopsis>
  472. char *PQfname(PGresult *res,
  473.               int field_index);
  474. </synopsis>
  475. </Para>
  476. </ListItem>
  477. <ListItem>
  478. <Para>
  479. <Function>PQfnumber</Function>
  480.             Returns  the  field  (attribute)  index
  481.           associated with the given field name.
  482. <synopsis>
  483. int PQfnumber(PGresult *res,
  484.               char* field_name);
  485. </synopsis>
  486. </Para>
  487. <Para>
  488.         -1 is returned if the given name does not match any field.
  489. </Para>
  490. </ListItem>
  491. <ListItem>
  492. <Para>
  493. <Function>PQftype</Function>
  494.             Returns the field type associated with the
  495.           given  field  index.  The  integer  returned is an
  496.           internal coding of the type.  Field indices  start
  497.           at 0.
  498. <synopsis>
  499. Oid PQftype(PGresult *res,
  500.             int field_num);
  501. </synopsis>
  502. </Para>
  503. </ListItem>
  504. <ListItem>
  505. <Para>
  506. <Function>PQfsize</Function>
  507.           Returns  the  size  in bytes of the field
  508.           associated with the given field index.
  509.           Field indices start at 0.
  510. <synopsis>
  511. int PQfsize(PGresult *res,
  512.             int field_index);
  513. </synopsis>
  514. PQfsize returns the space allocated for this field in a database
  515. tuple, in other words the size of the server's binary representation
  516. of the data type.  -1 is returned if the field is variable size.
  517. </Para>
  518. </ListItem>
  519. <ListItem>
  520. <Para>
  521. <Function>PQfmod</Function>
  522.           Returns  the type-specific modification data of the field
  523.           associated with the given field index.
  524.           Field indices start at 0.
  525. <synopsis>
  526. int PQfmod(PGresult *res,
  527.            int field_index);
  528. </synopsis>
  529. </Para>
  530. </ListItem>
  531. <ListItem>
  532. <Para>
  533. <Function>PQgetvalue</Function>
  534.             Returns a single field  (attribute)  value of one tuple
  535.     of a PGresult.
  536.     Tuple and field indices start at 0.
  537. <synopsis>
  538. char* PQgetvalue(PGresult *res,
  539.                  int tup_num,
  540.                  int field_num);
  541. </synopsis>
  542.           For most queries, the value returned by PQgetvalue
  543.           is a null-terminated ASCII  string  representation
  544.           of the attribute value.  But if PQbinaryTuples() is TRUE,
  545.           the  value  returned  by
  546.           PQgetvalue  is  the  binary  representation of the
  547.           type in the internal format of the backend server
  548.   (but not including the size word, if the field is variable-length).
  549.           It  is then the programmer's responsibility to cast and
  550.           convert the data to the correct C type.  The pointer
  551.           returned  by  PQgetvalue points to storage that is
  552.           part of the PGresult structure.  One should not modify it,
  553.           and one must explicitly 
  554.           copy the value into other storage if it is to
  555.           be used past the lifetime of the  PGresult  structure itself.
  556. </Para>
  557. </ListItem>
  558. <ListItem>
  559. <Para>
  560. <Function>PQgetlength</Function>
  561.           Returns   the   length  of  a  field (attribute) in bytes.
  562.           Tuple and field indices start at 0.
  563. <synopsis>
  564. int PQgetlength(PGresult *res,
  565.                 int tup_num,
  566.                 int field_num);
  567. </synopsis>
  568. This is the actual data length for the particular data value, that is the
  569. size of the object pointed to by PQgetvalue.  Note that for ASCII-represented
  570. values, this size has little to do with the binary size reported by PQfsize.
  571. </Para>
  572. </ListItem>
  573. <ListItem>
  574. <Para>
  575. <Function>PQgetisnull</Function>
  576.            Tests a field for a NULL entry.
  577.            Tuple and field indices start at 0.
  578. <synopsis>
  579. int PQgetisnull(PGresult *res,
  580.                 int tup_num,
  581.                 int field_num);
  582. </synopsis>
  583.             This function returns  1 if the field contains a NULL, 0 if
  584.             it contains a non-null value.  (Note that PQgetvalue
  585.             will return an empty string, not a null pointer, for a NULL
  586.             field.)
  587. </Para>
  588. </ListItem>
  589. <ListItem>
  590. <Para>
  591. <Function>PQcmdStatus</Function>
  592.           Returns the command status string from the SQL command that
  593.   generated the PGresult.
  594. <synopsis>
  595. char *PQcmdStatus(PGresult *res);
  596. </synopsis>
  597. </Para>
  598. </ListItem>
  599. <ListItem>
  600. <Para>
  601. <Function>PQcmdTuples</Function>
  602.   Returns the number of rows affected by the SQL command.
  603. <synopsis>
  604. const char *PQcmdTuples(PGresult *res);
  605. </synopsis>
  606.           If the SQL command that generated the
  607.   PGresult was INSERT, UPDATE or DELETE, this returns a
  608.   string containing the number of rows affected.  If the
  609.           command was anything else, it returns the empty string.
  610. </Para>
  611. </ListItem>
  612. <ListItem>
  613. <Para>
  614. <Function>PQoidStatus</Function>
  615.           Returns a string with the object id of  the  tuple
  616.           inserted,  if  the SQL command was an INSERT.
  617.           Otherwise, returns an empty string.
  618. <synopsis>
  619. char* PQoidStatus(PGresult *res);
  620. </synopsis>
  621. </Para>
  622. </ListItem>
  623. <ListItem>
  624. <Para>
  625. <Function>PQprint</Function>
  626.           Prints out all the  tuples  and,  optionally,  the
  627.           attribute  names  to  the specified output stream.
  628. <synopsis>
  629. void PQprint(FILE* fout,      /* output stream */
  630.              PGresult* res,
  631.              PQprintOpt* po);
  632. struct _PQprintOpt
  633.         {
  634.                 pqbool  header;      /* print output field headings and row count */
  635.                 pqbool  align;       /* fill align the fields */
  636.                 pqbool  standard;    /* old brain dead format */
  637.                 pqbool  html3;       /* output html tables */
  638.                 pqbool  expanded;    /* expand tables */
  639.                 pqbool  pager;       /* use pager for output if needed */
  640.                 char    *fieldSep;   /* field separator */
  641.                 char    *tableOpt;   /* insert to HTML &lt;table ...&gt; */
  642.                 char    *caption;    /* HTML &lt;caption&gt; */
  643.                 char    **fieldName; /* null terminated array of replacement field names */
  644.         };
  645. </synopsis>
  646. This function is intended to replace PQprintTuples(), which is
  647. now obsolete.  The <FileName>psql</FileName> program uses
  648. PQprint() to display query results.
  649. </Para>
  650. </ListItem>
  651. <ListItem>
  652. <Para>
  653. <Function>PQprintTuples</Function>
  654.           Prints out all the  tuples  and,  optionally,  the
  655.           attribute  names  to  the specified output stream.
  656. <synopsis>
  657. void PQprintTuples(PGresult* res,
  658.                    FILE* fout,      /* output stream */
  659.                    int printAttName,/* print attribute names or not*/
  660.                    int terseOutput, /* delimiter bars or not?*/
  661.                    int width);      /* width of column, variable width if 0*/
  662. </synopsis>
  663. </Para>
  664. </ListItem>
  665. <ListItem>
  666. <Para>
  667. <Function>PQdisplayTuples</Function>
  668.           Prints out all the  tuples  and,  optionally,  the
  669.           attribute  names  to  the specified output stream.
  670. <synopsis>
  671. void PQdisplayTuples(PGresult* res,
  672.                      FILE* fout,           /* output stream */
  673.                      int fillAlign,        /* space fill to align columns */
  674.                      const char *fieldSep, /* field separator */
  675.                      int printHeader,      /* display headers? */
  676.                      int quiet);           /* suppress print of row count at end */
  677. </synopsis>
  678.           PQdisplayTuples() was intended to supersede PQprintTuples(), and
  679.           is in turn superseded by PQprint().
  680. </Para>
  681. </ListItem>
  682. <ListItem>
  683. <Para>
  684. <Function>PQclear</Function>
  685.           Frees  the  storage  associated with the PGresult.
  686.           Every query result should be freed via PQclear  when
  687.           it  is  no  longer needed.
  688. <synopsis>
  689. void PQclear(PQresult *res);
  690. </synopsis>
  691.           You can keep a PGresult object around for as long as you
  692.           need it; it does not go away when you issue a new query,
  693.           nor even if you close the connection.  To get rid of it,
  694.           you must call PQclear.  Failure to do this will
  695.           result in memory leaks in  the  frontend  application.
  696. </Para>
  697. </ListItem>
  698. <ListItem>
  699. <Para>
  700. <Function>PQmakeEmptyPGresult</Function>
  701.           Constructs an empty PGresult object with the given status.
  702. <synopsis>
  703. PGresult* PQmakeEmptyPGresult(PGconn *conn, ExecStatusType status);
  704. </synopsis>
  705. This is libpq's internal routine to allocate and initialize an empty
  706. PGresult object.  It is exported because some applications find it
  707. useful to generate result objects (particularly objects with error
  708. status) themselves.  If conn is not NULL and status indicates an error,
  709. the connection's current errorMessage is copied into the PGresult.
  710. Note that PQclear should eventually be called on the object, just
  711. as with a PGresult returned by libpq itself.
  712. </Para>
  713. </ListItem>
  714. </ItemizedList>
  715. </Para>
  716. </Sect1>
  717. <Sect1>
  718. <Title>Asynchronous Query Processing</Title>
  719. <Para>
  720. The PQexec function is adequate for submitting queries in simple synchronous
  721. applications.  It has a couple of major deficiencies however:
  722. <ItemizedList>
  723. <ListItem>
  724. <Para>
  725. PQexec waits for the query to be completed.  The application may have other
  726. work to do (such as maintaining a user interface), in which case it won't
  727. want to block waiting for the response.
  728. </Para>
  729. </ListItem>
  730. <ListItem>
  731. <Para>
  732. Since control is buried inside PQexec, it is hard for the frontend
  733. to decide it would like to try to cancel the ongoing query.  (It can be
  734. done from a signal handler, but not otherwise.)
  735. </Para>
  736. </ListItem>
  737. <ListItem>
  738. <Para>
  739. PQexec can return only one PGresult structure.  If the submitted query
  740. string contains multiple SQL commands, all but the last PGresult are
  741. discarded by PQexec.
  742. </Para>
  743. </ListItem>
  744. </ItemizedList>
  745. </Para>
  746. <Para>
  747. Applications that do not like these limitations can instead use the
  748. underlying functions that PQexec is built from: PQsendQuery and
  749. PQgetResult.
  750. <ItemizedList>
  751. <ListItem>
  752. <Para>
  753. <Function>PQsendQuery</Function>
  754.           Submit a query to <ProductName>Postgres</ProductName> without
  755.   waiting for the result(s).  TRUE is returned if the query was
  756.   successfully dispatched, FALSE if not (in which case, use
  757.   PQerrorMessage to get more information about the failure).
  758. <synopsis>
  759. int PQsendQuery(PGconn *conn,
  760.                 const char *query);
  761. </synopsis>
  762.   After successfully calling PQsendQuery, call PQgetResult one or more
  763.   times to obtain the query results.  PQsendQuery may not be called
  764.   again (on the same connection) until PQgetResult has returned NULL,
  765.   indicating that the query is done.
  766. </Para>
  767. </ListItem>
  768. <ListItem>
  769. <Para>
  770. <Function>PQgetResult</Function>
  771.           Wait for the next result from a prior PQsendQuery,
  772.   and return it.  NULL is returned when the query is complete
  773.   and there will be no more results.
  774. <synopsis>
  775. PGresult *PQgetResult(PGconn *conn);
  776. </synopsis>
  777.   PQgetResult must be called repeatedly until it returns NULL,
  778.   indicating that the query is done.  (If called when no query is
  779.   active, PQgetResult will just return NULL at once.)
  780.   Each non-null result from PQgetResult should be processed using
  781.   the same PGresult accessor functions previously described.
  782.   Don't forget to free each result object with PQclear when done with it.
  783.   Note that PQgetResult will block only if a query is active and the
  784.   necessary response data has not yet been read by PQconsumeInput.
  785. </Para>
  786. </ListItem>
  787. </ItemizedList>
  788. </Para>
  789. <Para>
  790. Using PQsendQuery and PQgetResult solves one of PQexec's problems:
  791. if a query string contains multiple SQL commands, the results of those
  792. commands can be obtained individually.  (This allows a simple form of
  793. overlapped processing, by the way: the frontend can be handling the
  794. results of one query while the backend is still working on later
  795. queries in the same query string.)  However, calling PQgetResult will
  796. still cause the frontend to block until the backend completes the
  797. next SQL command.  This can be avoided by proper use of three more
  798. functions:
  799. <ItemizedList>
  800. <ListItem>
  801. <Para>
  802. <Function>PQconsumeInput</Function>
  803.   If input is available from the backend, consume it.
  804. <synopsis>
  805. int PQconsumeInput(PGconn *conn);
  806. </synopsis>
  807. PQconsumeInput normally returns 1 indicating "no error", but returns
  808. 0 if there was some kind of trouble (in which case PQerrorMessage
  809. is set).  Note that the result does not say whether any input data
  810. was actually collected.   After calling PQconsumeInput,
  811. the application may check PQisBusy and/or PQnotifies to see if their state
  812. has changed.
  813.   PQconsumeInput may be called even if the application is not
  814.   prepared to deal with a result or notification just yet.  The
  815.   routine will read available data and save it in a buffer, thereby
  816.   causing a select(2) read-ready indication to go away.  The
  817.   application can thus use PQconsumeInput to clear the select
  818.   condition immediately, and then examine the results at leisure.
  819. </Para>
  820. </ListItem>
  821. <ListItem>
  822. <Para>
  823. <Function>PQisBusy</Function>
  824.   Returns TRUE if a query is busy, that is, PQgetResult would block
  825.   waiting for input.  A FALSE return indicates that PQgetResult can
  826.   be called with assurance of not blocking.
  827. <synopsis>
  828. int PQisBusy(PGconn *conn);
  829. </synopsis>
  830.   PQisBusy will not itself attempt to read data from the backend;
  831.   therefore PQconsumeInput must be invoked first, or the busy
  832.   state will never end.
  833. </Para>
  834. </ListItem>
  835. <ListItem>
  836. <Para>
  837. <Function>PQsocket</Function>
  838.   Obtain the file descriptor number for the backend connection socket.
  839.   A valid descriptor will be >= 0; a result of -1 indicates that
  840.   no backend connection is currently open.
  841. <synopsis>
  842. int PQsocket(PGconn *conn);
  843. </synopsis>
  844.   PQsocket should be used to obtain the backend socket descriptor
  845.   in preparation for executing select(2).  This allows an application
  846.   to wait for either backend responses or other conditions.
  847.   If the result of select(2) indicates that data can be read from
  848.   the backend socket, then PQconsumeInput should be called to read the
  849.   data; after which, PQisBusy, PQgetResult, and/or PQnotifies can be
  850.   used to process the response.
  851. </Para>
  852. </ListItem>
  853. </ItemizedList>
  854. </Para>
  855. <Para>
  856. A typical frontend using these functions will have a main loop that uses
  857. select(2) to wait for all the conditions that it must respond to.  One of
  858. the conditions will be input available from the backend, which in select's
  859. terms is readable data on the file descriptor identified by PQsocket.
  860. When the main loop detects input ready, it should call PQconsumeInput
  861. to read the input.  It can then call PQisBusy, followed by PQgetResult
  862. if PQisBusy returns FALSE.  It can also call PQnotifies to detect NOTIFY
  863. messages (see "Asynchronous Notification", below).
  864. </Para>
  865. <Para>
  866. A frontend that uses PQsendQuery/PQgetResult can also attempt to cancel
  867. a query that is still being processed by the backend.
  868. </Para>
  869. <Para>
  870. <ItemizedList>
  871. <ListItem>
  872. <Para>
  873. <Function>PQrequestCancel</Function>
  874.   Request that <ProductName>Postgres</ProductName> abandon
  875.   processing of the current query.
  876. <synopsis>
  877. int PQrequestCancel(PGconn *conn);
  878. </synopsis>
  879.   The return value is TRUE if the cancel request was successfully
  880.   dispatched, FALSE if not.  (If not, PQerrorMessage tells why not.)
  881.   Successful dispatch is no guarantee that the request will have any
  882.   effect, however.  Regardless of the return value of PQrequestCancel,
  883.   the application must continue with the normal result-reading
  884.   sequence using PQgetResult.  If the cancellation
  885.   is effective, the current query will terminate early and return
  886.   an error result.  If the cancellation fails (say because the
  887.   backend was already done processing the query), then there will
  888.   be no visible result at all.
  889. </Para>
  890. </ListItem>
  891. </ItemizedList>
  892. </Para>
  893. <Para>
  894. Note that if the current query is part of a transaction, cancellation
  895. will abort the whole transaction.
  896. </Para>
  897. <Para>
  898. PQrequestCancel can safely be invoked from a signal handler.  So, it is
  899. also possible to use it in conjunction with plain PQexec, if the decision
  900. to cancel can be made in a signal handler.  For example, psql invokes
  901. PQrequestCancel from a SIGINT signal handler, thus allowing interactive
  902. cancellation of queries that it issues through PQexec.  Note that
  903. PQrequestCancel will have no effect if the connection is not currently open
  904. or the backend is not currently processing a query.
  905. </Para>
  906. </Sect1>
  907. <Sect1>
  908. <Title>Fast Path</Title>
  909. <Para>
  910. <ProductName>Postgres</ProductName> provides a fast path interface to send
  911. function calls to the backend.  This is a trapdoor into system internals and
  912. can be a potential security hole.  Most users will not need this feature.
  913. <ItemizedList>
  914. <ListItem>
  915. <Para>
  916. <Function>PQfn</Function>
  917. Request execution of a backend function via the fast path interface.
  918. <synopsis>
  919. PGresult* PQfn(PGconn* conn,
  920.                int fnid,
  921.                int *result_buf,
  922.                int *result_len,
  923.                int result_is_int,
  924.                PQArgBlock *args,
  925.                int nargs);
  926. </synopsis>
  927.      The fnid argument is the object identifier of the function to be
  928.      executed.
  929.      result_buf is the buffer in which
  930.      to place the return value.  The caller must  have  allocated
  931.      sufficient space to store the return value (there is no check!).
  932.      The actual result length will be returned in the integer pointed
  933.      to  by  result_len.   If a 4-byte integer result is expected, set
  934.      result_is_int to 1; otherwise set it to 0.  (Setting result_is_int to 1
  935.      tells libpq to byte-swap the value if necessary, so that it is
  936.      delivered as a proper int value for the client machine.  When
  937.      result_is_int is 0, the byte string sent by the backend is returned
  938.      unmodified.)
  939.      args and nargs specify the arguments to be passed to the function.
  940. <synopsis>
  941. typedef struct {
  942.              int len;
  943.              int isint;
  944.              union {
  945.                  int *ptr;
  946.                  int integer;
  947.              } u;
  948.          } PQArgBlock;
  949. </synopsis>
  950.      PQfn always returns a valid PGresult*.  The  resultStatus  should be checked before the result is used.   The
  951.      caller is responsible for  freeing  the  PGresult  with
  952.      PQclear when it is no longer needed.
  953. </Para>
  954. </ListItem>
  955. </ItemizedList>
  956. </Para>
  957. </Sect1>
  958. <Sect1>
  959. <Title>Asynchronous Notification</Title>
  960. <Para>
  961. <ProductName>Postgres</ProductName> supports asynchronous notification via the
  962. LISTEN and NOTIFY commands.  A backend registers its interest in a particular
  963. notification condition with the LISTEN command (and can stop listening
  964. with the UNLISTEN command).  All backends listening on a
  965. particular condition will be notified asynchronously when a NOTIFY of that
  966. condition name is executed by any backend.  No additional information is
  967. passed from the notifier to the listener.  Thus, typically, any actual data
  968. that needs to be communicated is transferred through a database relation.
  969. Commonly the condition name is the same as the associated relation, but it is
  970. not necessary for there to be any associated relation.
  971. </Para>
  972. <Para>
  973. <FileName>libpq</FileName> applications submit LISTEN and UNLISTEN
  974. commands as ordinary SQL queries.  Subsequently, arrival of NOTIFY
  975. messages can be detected by calling PQnotifies().
  976. <ItemizedList>
  977. <ListItem>
  978. <Para>
  979. <Function>PQnotifies</Function>
  980.           Returns  the next notification from a list of unhandled
  981.           notification messages received from the backend.  Returns NULL if
  982.           there are no pending notifications.  Once a notification is
  983.   returned from PQnotifies, it is considered handled and will be
  984.   removed from the list of notifications.
  985. <synopsis>
  986. PGnotify* PQnotifies(PGconn *conn);
  987. typedef struct pgNotify
  988.     {
  989.         char        relname[NAMEDATALEN];       /* name of relation
  990.                                                  * containing data */
  991.         int         be_pid;                     /* process id of backend */
  992.     } PGnotify;
  993. </synopsis>
  994.   After processing a PGnotify object returned by PQnotifies,
  995.   be sure to free it with free() to avoid a memory leak.
  996.   NOTE: in <productname>Postgres</productname> 6.4 and later,
  997.   the be_pid is the notifying backend's, whereas in earlier versions
  998.   it was always your own backend's PID.
  999. </Para>
  1000. </ListItem>
  1001. </ItemizedList>
  1002. </Para>
  1003. <Para>
  1004. The  second  sample program gives an example of the use
  1005. of asynchronous notification.
  1006. </Para>
  1007. <Para>
  1008. PQnotifies() does not actually read backend data; it just returns messages
  1009. previously absorbed by another <FileName>libpq</FileName> function.  In prior
  1010. releases of <FileName>libpq</FileName>, the only way to ensure timely receipt
  1011. of NOTIFY messages was to constantly submit queries, even empty ones, and then
  1012. check PQnotifies() after each PQexec().  While this still works, it is
  1013. deprecated as a waste of processing power.  A better way to check for NOTIFY
  1014. messages when you have no useful queries to make is to call PQconsumeInput(),
  1015. then check PQnotifies().  You can use select(2) to wait for backend data to
  1016. arrive, thereby using no CPU power unless there is something to do.  Note that
  1017. this will work OK whether you use PQsendQuery/PQgetResult or plain old PQexec
  1018. for queries.  You should, however, remember to check PQnotifies() after each
  1019. PQgetResult or PQexec to see if any notifications came in during the
  1020. processing of the query.
  1021. </Para>
  1022. </Sect1>
  1023. <Sect1>
  1024. <Title>Functions Associated with the COPY Command</Title>
  1025. <Para>
  1026.      The COPY command in <ProductName>Postgres</ProductName> has options to  read  from
  1027.      or  write  to  the  network  connection  used by <FileName>libpq</FileName>.
  1028.      Therefore, functions are necessary to access this  network
  1029.      connection directly so applications may take advantage of this capability.
  1030. </Para>
  1031. <Para>
  1032.      These functions should be executed only after obtaining a PGRES_COPY_OUT
  1033.      or PGRES_COPY_IN result object from PQexec or PQgetResult.
  1034. </Para>
  1035. <Para>
  1036. <ItemizedList>
  1037. <ListItem>
  1038. <Para>
  1039. <Function>PQgetline</Function>
  1040.           Reads  a  newline-terminated  line  of  characters
  1041.           (transmitted  by the backend server) into a buffer
  1042.           string of size length.
  1043. <synopsis>
  1044. int PQgetline(PGconn *conn,
  1045.               char *string,
  1046.               int length)
  1047. </synopsis>
  1048.   Like fgets(3),  this  routine copies up to length-1 characters into string.
  1049.           It is like gets(3), however, in that  it  converts
  1050.           the terminating newline into a null character.
  1051.           PQgetline returns EOF at EOF, 0 if the entire line
  1052.           has been read, and 1 if the buffer is full but the
  1053.           terminating newline has not yet been read.
  1054.           Notice that the application must check to see if a
  1055.           new line consists of  the  two characters  ".",
  1056.           which  indicates  that the backend server has finished sending
  1057.   the results  of  the  copy  command.
  1058. If  the  application might
  1059. receive lines that are more than length-1  characters  long,
  1060. care is needed to be sure one recognizes the "." line correctly
  1061. (and does not, for example, mistake the end of a long data line
  1062. for a terminator line).
  1063. The code in
  1064. <FileName>
  1065. ../src/bin/psql/psql.c
  1066. </FileName>
  1067. contains routines that correctly handle  the  copy protocol.
  1068. </Para>
  1069. </ListItem>
  1070. <ListItem>
  1071. <Para>
  1072. <Function>PQgetlineAsync</Function>
  1073.           Reads  a  newline-terminated  line  of  characters
  1074.           (transmitted  by the backend server) into a buffer
  1075.           without blocking.
  1076. <synopsis>
  1077. int PQgetlineAsync(PGconn *conn,
  1078.                    char *buffer,
  1079.                    int bufsize)
  1080. </synopsis>
  1081. This routine is similar to PQgetline, but it can be used by applications
  1082. that must read COPY data asynchronously, that is without blocking.
  1083. Having issued the COPY command and gotten a PGRES_COPY_OUT response, the
  1084. application should call PQconsumeInput and PQgetlineAsync until the
  1085. end-of-data signal is detected.  Unlike PQgetline, this routine takes
  1086. responsibility for detecting end-of-data.
  1087. On each call, PQgetlineAsync will return data if a complete newline-
  1088. terminated data line is available in libpq's input buffer, or if the
  1089. incoming data line is too long to fit in the buffer offered by the caller.
  1090. Otherwise, no data is returned until the rest of the line arrives.
  1091. The routine returns -1 if the end-of-copy-data marker has been recognized,
  1092. or 0 if no data is available, or a positive number giving the number of
  1093. bytes of data returned.  If -1 is returned, the caller must next call
  1094. PQendcopy, and then return to normal processing.
  1095. The data returned will not extend beyond a newline character.  If possible
  1096. a whole line will be returned at one time.  But if the buffer offered by
  1097. the caller is too small to hold a line sent by the backend, then a partial
  1098. data line will be returned.  This can be detected by testing whether the
  1099. last returned byte is 'n' or not.
  1100. The returned string is not null-terminated.  (If you want to add a
  1101. terminating null, be sure to pass a bufsize one smaller than the room
  1102. actually available.)
  1103. </Para>
  1104. </ListItem>
  1105. <ListItem>
  1106. <Para>
  1107. <Function>PQputline</Function>
  1108. Sends  a  null-terminated  string  to  the backend server.
  1109. Returns 0 if OK, EOF if unable to send the string.
  1110. <synopsis>
  1111. int PQputline(PGconn *conn,
  1112.               char *string);
  1113. </synopsis>
  1114. Note the application must explicitly  send  the  two
  1115. characters  "." on a final line  to indicate to the backend that it
  1116. has finished sending its data.
  1117. </Para>
  1118. </ListItem>
  1119. <ListItem>
  1120. <Para>
  1121. <Function>PQputnbytes</Function>
  1122. Sends  a  non-null-terminated  string  to  the backend server.
  1123. Returns 0 if OK, EOF if unable to send the string.
  1124. <synopsis>
  1125. int PQputnbytes(PGconn *conn,
  1126.                 const char *buffer,
  1127.                 int nbytes);
  1128. </synopsis>
  1129. This is exactly like PQputline, except that the data buffer need
  1130. not be null-terminated since the number of bytes to send is
  1131. specified directly.
  1132. </Para>
  1133. </ListItem>
  1134. <ListItem>
  1135. <Para>
  1136. <Function>PQendcopy</Function>
  1137.           Syncs with the backend.  This function waits until
  1138.           the  backend  has  finished  the  copy.  It should
  1139.           either be issued when the  last  string  has  been
  1140.           sent  to  the  backend using PQputline or when the
  1141.           last string has been  received  from  the  backend
  1142.           using PGgetline.  It must be issued or the backend
  1143.           may get "out of sync"  with  the  frontend.   Upon
  1144.           return from this function, the backend is ready to
  1145.           receive the next query.
  1146.           The return value is 0  on  successful  completion,
  1147.           nonzero otherwise.
  1148. <synopsis>
  1149. int PQendcopy(PGconn *conn);
  1150. </synopsis>
  1151. </Para>
  1152. <Para>
  1153. As an example:
  1154. <ProgramListing>
  1155. PQexec(conn, "create table foo (a int4, b char(16), d float8)");
  1156. PQexec(conn, "copy foo from stdin");
  1157. PQputline(conn, "3thello worldt4.5n");
  1158. PQputline(conn,"4tgoodbye worldt7.11n");
  1159. ...
  1160. PQputline(conn,"\.n");
  1161. PQendcopy(conn);
  1162. </ProgramListing>
  1163. </Para>
  1164. </ListItem>
  1165. </ItemizedList>
  1166. </Para>
  1167. <Para>
  1168. When using PQgetResult, the application should respond to
  1169. a PGRES_COPY_OUT result by executing PQgetline repeatedly,
  1170. followed by PQendcopy after the terminator line is seen.
  1171. It should then return to the PQgetResult loop until PQgetResult
  1172. returns NULL.  Similarly a PGRES_COPY_IN result is processed
  1173. by a series of PQputline calls followed by PQendcopy, then
  1174. return to the PQgetResult loop.  This arrangement will ensure that
  1175. a copy in or copy out command embedded in a series of SQL commands
  1176. will be executed correctly.
  1177. Older applications are likely to submit a copy in or copy out
  1178. via PQexec and assume that the transaction is done after PQendcopy.
  1179. This will work correctly only if the copy in/out is the only
  1180. SQL command in the query string.
  1181. </Para>
  1182. </Sect1>
  1183. <Sect1>
  1184. <Title><FileName>libpq</FileName> Tracing Functions</Title>
  1185. <Para>
  1186. <ItemizedList>
  1187. <ListItem>
  1188. <Para>
  1189. <Function>PQtrace</Function>
  1190.           Enable  tracing of the frontend/backend communication to a debugging file stream.
  1191. <synopsis>
  1192. void PQtrace(PGconn *conn
  1193.              FILE *debug_port)
  1194. </synopsis>
  1195. </Para>
  1196. </ListItem>
  1197. <ListItem>
  1198. <Para>
  1199. <Function>PQuntrace</Function>
  1200.           Disable tracing started by PQtrace
  1201. <synopsis>
  1202. void PQuntrace(PGconn *conn)
  1203. </synopsis>
  1204. </Para>
  1205. </ListItem>
  1206. </ItemizedList>
  1207. </Para>
  1208. </Sect1>
  1209. <Sect1>
  1210. <Title>
  1211. <FileName>libpq</FileName> Control Functions</Title>
  1212. <Para>
  1213. <ItemizedList>
  1214. <ListItem>
  1215. <Para>
  1216. <Function>PQsetNoticeProcessor</Function>
  1217. Control reporting of notice and warning messages generated by libpq.
  1218. <synopsis>
  1219. void PQsetNoticeProcessor (PGconn * conn,
  1220.         void (*noticeProcessor) (void * arg, const char * message),
  1221.         void * arg)
  1222. </synopsis>
  1223. </Para>
  1224. </ListItem>
  1225. </ItemizedList>
  1226. </Para>
  1227. <Para>
  1228. By default, <filename>libpq</filename> prints "notice" messages from the backend on stderr,
  1229. as well as a few error messages that it generates by itself.
  1230. This behavior can be overridden by supplying a callback function that
  1231. does something else with the messages.  The callback function is passed
  1232. the text of the error message (which includes a trailing newline), plus
  1233. a void pointer that is the same one passed to <function>PQsetNoticeProcessor</function>.
  1234. (This pointer can be used to access application-specific state if needed.)
  1235. The default notice processor is simply
  1236. <ProgramListing>
  1237. static void
  1238. defaultNoticeProcessor(void * arg, const char * message)
  1239. {
  1240.     fprintf(stderr, "%s", message);
  1241. }
  1242. </ProgramListing>
  1243. </Para>
  1244. <Para>
  1245. To use a special notice processor, call <function>PQsetNoticeProcessor</function> just after
  1246. creation of a new PGconn object.
  1247. </Para>
  1248. </Sect1>
  1249. <Sect1>
  1250. <Title>User Authentication Functions</Title>
  1251. <Para>
  1252. The frontend/backend authentication process is  handled
  1253. by  <Function>PQconnectdb</Function>  without any further intervention.
  1254. The authentication method is now
  1255. determined entirely by the DBA (see pga_hba.conf(5)).  The following
  1256. routines no longer have any effect and should not be used.
  1257. </Para>
  1258. <Para>
  1259. <ItemizedList>
  1260. <ListItem>
  1261. <Para>
  1262. <Function>fe_getauthname</Function>
  1263.           Returns a pointer to static space containing whatever name the user has authenticated.  Use of this
  1264.           routine  in  place  of calls to getenv(3) or getpwuid(3) by applications is highly recommended,  as
  1265.           it  is  entirely  possible  that the authenticated
  1266.           user name is not the same as  value  of  the  <Acronym>USER</Acronym>
  1267.           environment   variable  or  the  user's  entry  in
  1268.           <FileName>/etc/passwd</FileName>.
  1269. <synopsis>
  1270. char *fe_getauthname(char* errorMessage)
  1271. </synopsis>
  1272. </Para>
  1273. </ListItem>
  1274. <ListItem>
  1275. <Para>
  1276. <Function>fe_setauthsvc</Function>
  1277.           Specifies that  <FileName>libpq</FileName>  should  use  authentication
  1278.           service  name rather than its compiled-in default.
  1279.           This value is typically taken from a  command-line
  1280.           switch.
  1281. <synopsis>
  1282. void fe_setauthsvc(char *name,
  1283.                    char* errorMessage)
  1284. </synopsis>
  1285.           Any   error   messages   from  the  authentication
  1286.           attempts are returned in  the  errorMessage  argument.
  1287. </Para>
  1288. </ListItem>
  1289. </ItemizedList>
  1290. </Para>
  1291. </Sect1>
  1292. <Sect1 id="libpq-envars">
  1293. <Title>Environment Variables</Title>
  1294. <Para>
  1295. The following environment variables can be used to select default
  1296. connection parameter values, which will be used by PQconnectdb or
  1297. PQsetdbLogin if no value is directly specified by the calling code.
  1298. These are useful to avoid hard-coding database names into simple
  1299. application programs.
  1300. <ItemizedList>
  1301. <ListItem>
  1302. <Para>
  1303. <Acronym>PGHOST</Acronym> sets the default server name.
  1304. If a non-zero-length string is specified, TCP/IP communication is used.
  1305. Without a host name, libpq will connect using a local Unix domain socket.
  1306. </Para>
  1307. </ListItem>
  1308. <ListItem>
  1309. <Para>
  1310. <Acronym>PGPORT</Acronym>  sets the default port or local Unix domain socket
  1311. file extension for communicating with the <ProductName>Postgres</ProductName>
  1312. backend.
  1313. </Para>
  1314. </ListItem>
  1315. <ListItem>
  1316. <Para>
  1317. <Acronym>PGDATABASE</Acronym>  sets the default 
  1318. <ProductName>Postgres</ProductName> database name.
  1319. </Para>
  1320. </ListItem>
  1321. <ListItem>
  1322. <Para>
  1323. <Acronym>PGUSER</Acronym>
  1324. sets the username used to connect to the database and for authentication.
  1325. </Para>
  1326. </ListItem>
  1327. <ListItem>
  1328. <Para>
  1329. <Acronym>PGPASSWORD</Acronym>
  1330. sets the password used if the backend demands password authentication.
  1331. </Para>
  1332. </ListItem>
  1333. <ListItem>
  1334. <Para>
  1335. <Acronym>PGREALM</Acronym> sets the Kerberos realm to  use  with  
  1336. <ProductName>Postgres</ProductName>,
  1337.   if  it is different from the local realm.  If
  1338. <Acronym>PGREALM</Acronym> is set, <ProductName>Postgres</ProductName> 
  1339. applications  will  attempt
  1340.         authentication  with  servers for this realm and use
  1341.         separate ticket files to avoid conflicts with  local
  1342.         ticket  files.   This  environment  variable is only
  1343.         used if Kerberos authentication is selected by the backend.
  1344. </Para>
  1345. </ListItem>
  1346. <ListItem>
  1347. <Para>
  1348. <Acronym>PGOPTIONS</Acronym> sets additional runtime  options  for  
  1349. the <ProductName>Postgres</ProductName> backend.
  1350. </Para>
  1351. </ListItem>
  1352. <ListItem>
  1353. <Para>
  1354. <Acronym>PGTTY</Acronym> sets the file or tty on which  debugging  
  1355. messages from the backend server are displayed.
  1356. </Para>
  1357. </ListItem>
  1358. </ItemizedList>
  1359. </Para>
  1360. <Para>
  1361. The following environment variables can be used to specify user-level default
  1362. behavior for every Postgres session:
  1363. <ItemizedList>
  1364. <ListItem>
  1365. <Para>
  1366. <Acronym>PGDATESTYLE</Acronym>
  1367. sets the default style of date/time representation.
  1368. </Para>
  1369. </ListItem>
  1370. <ListItem>
  1371. <Para>
  1372. <Acronym>PGTZ</Acronym>
  1373. sets the default time zone.
  1374. </Para>
  1375. </ListItem>
  1376. </ItemizedList>
  1377. </Para>
  1378. <Para>
  1379. The following environment variables can be used to specify default internal
  1380. behavior for every Postgres session:
  1381. <ItemizedList>
  1382. <ListItem>
  1383. <Para>
  1384. <Acronym>PGGEQO</Acronym>
  1385. sets the default mode for the genetic optimizer.
  1386. </Para>
  1387. </ListItem>
  1388. <ListItem>
  1389. <Para>
  1390. <Acronym>PGRPLANS</Acronym>
  1391. sets the default mode to allow or disable right-sided plans in the optimizer.
  1392. </Para>
  1393. </ListItem>
  1394. <ListItem>
  1395. <Para>
  1396. <Acronym>PGCOSTHEAP</Acronym>
  1397. sets the default cost for heap searches for the optimizer.
  1398. </Para>
  1399. </ListItem>
  1400. <ListItem>
  1401. <Para>
  1402. <Acronym>PGCOSTINDEX</Acronym>
  1403. sets the default cost for indexed searches for the optimizer.
  1404. </Para>
  1405. </ListItem>
  1406. </ItemizedList>
  1407. </Para>
  1408. <Para>
  1409. Refer to the <command>SET</command> <acronym>SQL</acronym> command
  1410. for information on correct values for these environment variables.
  1411. </Para>
  1412. </Sect1>
  1413. <Sect1>
  1414. <Title>Caveats</Title>
  1415. <Para>
  1416.      The  query  buffer is 8192 bytes long, and queries over
  1417.      that length will be rejected.
  1418. </Para>
  1419. </Sect1>
  1420. <Sect1>
  1421. <Title>Sample Programs</Title>
  1422. <Sect2>
  1423. <Title>Sample Program 1</Title>
  1424. <Para>
  1425. <ProgramListing>
  1426. /*
  1427.  * testlibpq.c Test the C version of Libpq, the Postgres frontend
  1428.  * library.
  1429.  *
  1430.  *
  1431.  */
  1432. #include &lt;stdio.h&gt;
  1433. #include "libpq-fe.h"
  1434. void
  1435. exit_nicely(PGconn *conn)
  1436. {
  1437.     PQfinish(conn);
  1438.     exit(1);
  1439. }
  1440. main()
  1441. {
  1442.     char       *pghost,
  1443.                *pgport,
  1444.                *pgoptions,
  1445.                *pgtty;
  1446.     char       *dbName;
  1447.     int         nFields;
  1448.     int         i,
  1449.                 j;
  1450.     /* FILE *debug; */
  1451.     PGconn     *conn;
  1452.     PGresult   *res;
  1453.     /*
  1454.      * begin, by setting the parameters for a backend connection if the
  1455.      * parameters are null, then the system will try to use reasonable
  1456.      * defaults by looking up environment variables or, failing that,
  1457.      * using hardwired constants
  1458.      */
  1459.     pghost = NULL;              /* host name of the backend server */
  1460.     pgport = NULL;              /* port of the backend server */
  1461.     pgoptions = NULL;           /* special options to start up the backend
  1462.                                  * server */
  1463.     pgtty = NULL;               /* debugging tty for the backend server */
  1464.     dbName = "template1";
  1465.     /* make a connection to the database */
  1466.     conn = PQsetdb(pghost, pgport, pgoptions, pgtty, dbName);
  1467.     /*
  1468.      * check to see that the backend connection was successfully made
  1469.      */
  1470.     if (PQstatus(conn) == CONNECTION_BAD)
  1471.     {
  1472.         fprintf(stderr, "Connection to database '%s' failed.n", dbName);
  1473.         fprintf(stderr, "%s", PQerrorMessage(conn));
  1474.         exit_nicely(conn);
  1475.     }
  1476.     /* debug = fopen("/tmp/trace.out","w"); */
  1477.     /* PQtrace(conn, debug);  */
  1478.     /* start a transaction block */
  1479.     res = PQexec(conn, "BEGIN");
  1480.     if (!res || PQresultStatus(res) != PGRES_COMMAND_OK)
  1481.     {
  1482.         fprintf(stderr, "BEGIN command failedn");
  1483.         PQclear(res);
  1484.         exit_nicely(conn);
  1485.     }
  1486.     /*
  1487.      * should PQclear PGresult whenever it is no longer needed to avoid
  1488.      * memory leaks
  1489.      */
  1490.     PQclear(res);
  1491.     /*
  1492.      * fetch instances from the pg_database, the system catalog of
  1493.      * databases
  1494.      */
  1495.     res = PQexec(conn, "DECLARE mycursor CURSOR FOR select * from pg_database");
  1496.     if (!res || PQresultStatus(res) != PGRES_COMMAND_OK)
  1497.     {
  1498.         fprintf(stderr, "DECLARE CURSOR command failedn");
  1499.         PQclear(res);
  1500.         exit_nicely(conn);
  1501.     }
  1502.     PQclear(res);
  1503.     res = PQexec(conn, "FETCH ALL in mycursor");
  1504.     if (!res || PQresultStatus(res) != PGRES_TUPLES_OK)
  1505.     {
  1506.         fprintf(stderr, "FETCH ALL command didn't return tuples properlyn");
  1507.         PQclear(res);
  1508.         exit_nicely(conn);
  1509.     }
  1510.     /* first, print out the attribute names */
  1511.     nFields = PQnfields(res);
  1512.     for (i = 0; i &lt; nFields; i++)
  1513.         printf("%-15s", PQfname(res, i));
  1514.     printf("nn");
  1515.     /* next, print out the instances */
  1516.     for (i = 0; i &lt; PQntuples(res); i++)
  1517.     {
  1518.         for (j = 0; j &lt; nFields; j++)
  1519.             printf("%-15s", PQgetvalue(res, i, j));
  1520.         printf("n");
  1521.     }
  1522.     PQclear(res);
  1523.     /* close the cursor */
  1524.     res = PQexec(conn, "CLOSE mycursor");
  1525.     PQclear(res);
  1526.     /* commit the transaction */
  1527.     res = PQexec(conn, "COMMIT");
  1528.     PQclear(res);
  1529.     /* close the connection to the database and cleanup */
  1530.     PQfinish(conn);
  1531.     /* fclose(debug); */
  1532. }
  1533. </ProgramListing>
  1534. </Para>
  1535. </Sect2>
  1536. <Sect2>
  1537. <Title>Sample Program 2</Title>
  1538. <Para>
  1539. <ProgramListing>
  1540. /*
  1541.  * testlibpq2.c
  1542.  *  Test of the asynchronous notification interface
  1543.  *
  1544.  * Start this program, then from psql in another window do
  1545.  *   NOTIFY TBL2;
  1546.  *
  1547.  * Or, if you want to get fancy, try this:
  1548.  * Populate a database with the following:
  1549.  *
  1550.  *   CREATE TABLE TBL1 (i int4);
  1551.  *
  1552.  *   CREATE TABLE TBL2 (i int4);
  1553.  *
  1554.  *   CREATE RULE r1 AS ON INSERT TO TBL1 DO
  1555.  *     (INSERT INTO TBL2 values (new.i); NOTIFY TBL2);
  1556.  *
  1557.  * and do
  1558.  *
  1559.  *   INSERT INTO TBL1 values (10);
  1560.  *
  1561.  */
  1562. #include &lt;stdio.h&gt;
  1563. #include "libpq-fe.h"
  1564. void
  1565. exit_nicely(PGconn *conn)
  1566. {
  1567.     PQfinish(conn);
  1568.     exit(1);
  1569. }
  1570. main()
  1571. {
  1572.     char       *pghost,
  1573.                *pgport,
  1574.                *pgoptions,
  1575.                *pgtty;
  1576.     char       *dbName;
  1577.     int         nFields;
  1578.     int         i,
  1579.                 j;
  1580.     PGconn     *conn;
  1581.     PGresult   *res;
  1582.     PGnotify   *notify;
  1583.     /*
  1584.      * begin, by setting the parameters for a backend connection if the
  1585.      * parameters are null, then the system will try to use reasonable
  1586.      * defaults by looking up environment variables or, failing that,
  1587.      * using hardwired constants
  1588.      */
  1589.     pghost = NULL;              /* host name of the backend server */
  1590.     pgport = NULL;              /* port of the backend server */
  1591.     pgoptions = NULL;           /* special options to start up the backend
  1592.                                  * server */
  1593.     pgtty = NULL;               /* debugging tty for the backend server */
  1594.     dbName = getenv("USER");    /* change this to the name of your test
  1595.                                  * database */
  1596.     /* make a connection to the database */
  1597.     conn = PQsetdb(pghost, pgport, pgoptions, pgtty, dbName);
  1598.     /*
  1599.      * check to see that the backend connection was successfully made
  1600.      */
  1601.     if (PQstatus(conn) == CONNECTION_BAD)
  1602.     {
  1603.         fprintf(stderr, "Connection to database '%s' failed.n", dbName);
  1604.         fprintf(stderr, "%s", PQerrorMessage(conn));
  1605.         exit_nicely(conn);
  1606.     }
  1607.     res = PQexec(conn, "LISTEN TBL2");
  1608.     if (!res || PQresultStatus(res) != PGRES_COMMAND_OK)
  1609.     {
  1610.         fprintf(stderr, "LISTEN command failedn");
  1611.         PQclear(res);
  1612.         exit_nicely(conn);
  1613.     }
  1614.     /*
  1615.      * should PQclear PGresult whenever it is no longer needed to avoid
  1616.      * memory leaks
  1617.      */
  1618.     PQclear(res);
  1619.     while (1)
  1620.     {
  1621.         /*
  1622.          * wait a little bit between checks; waiting with select()
  1623.          * would be more efficient.
  1624.          */
  1625.         sleep(1);
  1626.         /* collect any asynchronous backend messages */
  1627.         PQconsumeInput(conn);
  1628.         /* check for asynchronous notify messages */
  1629.         while ((notify = PQnotifies(conn)) != NULL)
  1630.         {
  1631.             fprintf(stderr,
  1632.                  "ASYNC NOTIFY of '%s' from backend pid '%d' receivedn",
  1633.                     notify-&gt;relname, notify-&gt;be_pid);
  1634.             free(notify);
  1635.         }
  1636.     }
  1637.     /* close the connection to the database and cleanup */
  1638.     PQfinish(conn);
  1639. }
  1640. </ProgramListing>
  1641. </Para>
  1642. </Sect2>
  1643. <Sect2>
  1644. <Title>Sample Program 3</Title>
  1645. <Para>
  1646. <ProgramListing>
  1647. /*
  1648.  * testlibpq3.c Test the C version of Libpq, the Postgres frontend
  1649.  * library. tests the binary cursor interface
  1650.  *
  1651.  *
  1652.  *
  1653.  * populate a database by doing the following:
  1654.  *
  1655.  * CREATE TABLE test1 (i int4, d float4, p polygon);
  1656.  *
  1657.  * INSERT INTO test1 values (1, 3.567, '(3.0, 4.0, 1.0,
  1658.  * 2.0)'::polygon);
  1659.  *
  1660.  * INSERT INTO test1 values (2, 89.05, '(4.0, 3.0, 2.0,
  1661.  * 1.0)'::polygon);
  1662.  *
  1663.  * the expected output is:
  1664.  *
  1665.  * tuple 0: got i = (4 bytes) 1, d = (4 bytes) 3.567000, p = (4
  1666.  * bytes) 2 points   boundbox = (hi=3.000000/4.000000, lo =
  1667.  * 1.000000,2.000000) tuple 1: got i = (4 bytes) 2, d = (4 bytes)
  1668.  * 89.050003, p = (4 bytes) 2 points   boundbox =
  1669.  * (hi=4.000000/3.000000, lo = 2.000000,1.000000)
  1670.  *
  1671.  *
  1672.  */
  1673. #include &lt;stdio.h&gt;
  1674. #include "libpq-fe.h"
  1675. #include "utils/geo-decls.h"    /* for the POLYGON type */
  1676. void
  1677. exit_nicely(PGconn *conn)
  1678. {
  1679.     PQfinish(conn);
  1680.     exit(1);
  1681. }
  1682. main()
  1683. {
  1684.     char       *pghost,
  1685.                *pgport,
  1686.                *pgoptions,
  1687.                *pgtty;
  1688.     char       *dbName;
  1689.     int         nFields;
  1690.     int         i,
  1691.                 j;
  1692.     int         i_fnum,
  1693.                 d_fnum,
  1694.                 p_fnum;
  1695.     PGconn     *conn;
  1696.     PGresult   *res;
  1697.     /*
  1698.      * begin, by setting the parameters for a backend connection if the
  1699.      * parameters are null, then the system will try to use reasonable
  1700.      * defaults by looking up environment variables or, failing that,
  1701.      * using hardwired constants
  1702.      */
  1703.     pghost = NULL;              /* host name of the backend server */
  1704.     pgport = NULL;              /* port of the backend server */
  1705.     pgoptions = NULL;           /* special options to start up the backend
  1706.                                  * server */
  1707.     pgtty = NULL;               /* debugging tty for the backend server */
  1708.     dbName = getenv("USER");    /* change this to the name of your test
  1709.                                  * database */
  1710.     /* make a connection to the database */
  1711.     conn = PQsetdb(pghost, pgport, pgoptions, pgtty, dbName);
  1712.     /*
  1713.      * check to see that the backend connection was successfully made
  1714.      */
  1715.     if (PQstatus(conn) == CONNECTION_BAD)
  1716.     {
  1717.         fprintf(stderr, "Connection to database '%s' failed.n", dbName);
  1718.         fprintf(stderr, "%s", PQerrorMessage(conn));
  1719.         exit_nicely(conn);
  1720.     }
  1721.     /* start a transaction block */
  1722.     res = PQexec(conn, "BEGIN");
  1723.     if (!res || PQresultStatus(res) != PGRES_COMMAND_OK)
  1724.     {
  1725.         fprintf(stderr, "BEGIN command failedn");
  1726.         PQclear(res);
  1727.         exit_nicely(conn);
  1728.     }
  1729.     /*
  1730.      * should PQclear PGresult whenever it is no longer needed to avoid
  1731.      * memory leaks
  1732.      */
  1733.     PQclear(res);
  1734.     /*
  1735.      * fetch instances from the pg_database, the system catalog of
  1736.      * databases
  1737.      */
  1738.     res = PQexec(conn, "DECLARE mycursor BINARY CURSOR FOR select * from test1");
  1739.     if (!res || PQresultStatus(res) != PGRES_COMMAND_OK)
  1740.     {
  1741.         fprintf(stderr, "DECLARE CURSOR command failedn");
  1742.         PQclear(res);
  1743.         exit_nicely(conn);
  1744.     }
  1745.     PQclear(res);
  1746.     res = PQexec(conn, "FETCH ALL in mycursor");
  1747.     if (!res || PQresultStatus(res) != PGRES_TUPLES_OK)
  1748.     {
  1749.         fprintf(stderr, "FETCH ALL command didn't return tuples properlyn");
  1750.         PQclear(res);
  1751.         exit_nicely(conn);
  1752.     }
  1753.     i_fnum = PQfnumber(res, "i");
  1754.     d_fnum = PQfnumber(res, "d");
  1755.     p_fnum = PQfnumber(res, "p");
  1756.     for (i = 0; i &lt; 3; i++)
  1757.     {
  1758.         printf("type[%d] = %d, size[%d] = %dn",
  1759.                i, PQftype(res, i),
  1760.                i, PQfsize(res, i));
  1761.     }
  1762.     for (i = 0; i &lt; PQntuples(res); i++)
  1763.     {
  1764.         int        *ival;
  1765.         float      *dval;
  1766.         int         plen;
  1767.         POLYGON    *pval;
  1768.         /* we hard-wire this to the 3 fields we know about */
  1769.         ival = (int *) PQgetvalue(res, i, i_fnum);
  1770.         dval = (float *) PQgetvalue(res, i, d_fnum);
  1771.         plen = PQgetlength(res, i, p_fnum);
  1772.         /*
  1773.          * plen doesn't include the length field so need to
  1774.          * increment by VARHDSZ
  1775.          */
  1776.         pval = (POLYGON *) malloc(plen + VARHDRSZ);
  1777.         pval-&gt;size = plen;
  1778.         memmove((char *) &amp;pval-&gt;npts, PQgetvalue(res, i, p_fnum), plen);
  1779.         printf("tuple %d: gotn", i);
  1780.         printf(" i = (%d bytes) %d,n",
  1781.                PQgetlength(res, i, i_fnum), *ival);
  1782.         printf(" d = (%d bytes) %f,n",
  1783.                PQgetlength(res, i, d_fnum), *dval);
  1784.         printf(" p = (%d bytes) %d points tboundbox = (hi=%f/%f, lo = %f,%f)n",
  1785.                PQgetlength(res, i, d_fnum),
  1786.                pval-&gt;npts,
  1787.                pval-&gt;boundbox.xh,
  1788.                pval-&gt;boundbox.yh,
  1789.                pval-&gt;boundbox.xl,
  1790.                pval-&gt;boundbox.yl);
  1791.     }
  1792.     PQclear(res);
  1793.     /* close the cursor */
  1794.     res = PQexec(conn, "CLOSE mycursor");
  1795.     PQclear(res);
  1796.     /* commit the transaction */
  1797.     res = PQexec(conn, "COMMIT");
  1798.     PQclear(res);
  1799.     /* close the connection to the database and cleanup */
  1800.     PQfinish(conn);
  1801. }
  1802. </ProgramListing>
  1803. </Para>
  1804. </Sect2>
  1805. </Sect1>
  1806. </Chapter>