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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * libpq-fe.h
  4.  *   This file contains definitions for structures and
  5.  *   externs for functions used by frontend postgres applications.
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: libpq-fe.h,v 1.50 1999/05/25 16:15:13 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef LIBPQ_FE_H
  14. #define LIBPQ_FE_H
  15. #ifdef __cplusplus
  16. extern "C"
  17. {
  18. #endif
  19. #include <stdio.h>
  20. /* postgres_ext.h defines the backend's externally visible types,
  21.  * such as Oid.
  22.  */
  23. #include "postgres_ext.h"
  24. /* Application-visible enum types */
  25. typedef enum
  26. {
  27. CONNECTION_OK,
  28. CONNECTION_BAD
  29. } ConnStatusType;
  30. typedef enum
  31. {
  32. PGRES_EMPTY_QUERY = 0,
  33. PGRES_COMMAND_OK, /* a query command that doesn't return
  34.  * anything was executed properly by the
  35.  * backend */
  36. PGRES_TUPLES_OK, /* a query command that returns tuples was
  37.  * executed properly by the backend,
  38.  * PGresult contains the result tuples */
  39. PGRES_COPY_OUT, /* Copy Out data transfer in progress */
  40. PGRES_COPY_IN, /* Copy In data transfer in progress */
  41. PGRES_BAD_RESPONSE, /* an unexpected response was recv'd from
  42.  * the backend */
  43. PGRES_NONFATAL_ERROR,
  44. PGRES_FATAL_ERROR
  45. } ExecStatusType;
  46. /* String descriptions of the ExecStatusTypes.
  47.  * NB: direct use of this array is now deprecated; call PQresStatus() instead.
  48.  */
  49. extern const char *const pgresStatus[];
  50. /* PGconn encapsulates a connection to the backend.
  51.  * The contents of this struct are not supposed to be known to applications.
  52.  */
  53. typedef struct pg_conn PGconn;
  54. /* PGresult encapsulates the result of a query (or more precisely, of a single
  55.  * SQL command --- a query string given to PQsendQuery can contain multiple
  56.  * commands and thus return multiple PGresult objects).
  57.  * The contents of this struct are not supposed to be known to applications.
  58.  */
  59. typedef struct pg_result PGresult;
  60. /* PGnotify represents the occurrence of a NOTIFY message.
  61.  * Ideally this would be an opaque typedef, but it's so simple that it's
  62.  * unlikely to change.
  63.  * NOTE: in Postgres 6.4 and later, the be_pid is the notifying backend's,
  64.  * whereas in earlier versions it was always your own backend's PID.
  65.  */
  66. typedef struct pgNotify
  67. {
  68. char relname[NAMEDATALEN]; /* name of relation
  69.  * containing data */
  70. int be_pid; /* process id of backend */
  71. } PGnotify;
  72. /* PQnoticeProcessor is the function type for the notice-message callback.
  73.  */
  74. typedef void (*PQnoticeProcessor) (void *arg, const char *message);
  75. /* Print options for PQprint() */
  76. /*
  77.  * We can't use the conventional "bool", because we are designed to be
  78.  * included in a user's program, and user may already have that type
  79.  * defined.  Pqbool, on the other hand, is unlikely to be used.
  80.  */
  81. typedef char pqbool;
  82. typedef struct _PQprintOpt
  83. {
  84. pqbool header; /* print output field headings and row
  85.  * count */
  86. pqbool align; /* fill align the fields */
  87. pqbool standard; /* old brain dead format */
  88. pqbool html3; /* output html tables */
  89. pqbool expanded; /* expand tables */
  90. pqbool pager; /* use pager for output if needed */
  91. char    *fieldSep; /* field separator */
  92. char    *tableOpt; /* insert to HTML <table ...> */
  93. char    *caption; /* HTML <caption> */
  94. char   **fieldName; /* null terminated array of repalcement
  95.  * field names */
  96. } PQprintOpt;
  97. /* ----------------
  98.  * Structure for the conninfo parameter definitions returned by PQconndefaults
  99.  * ----------------
  100.  */
  101. typedef struct _PQconninfoOption
  102. {
  103. char    *keyword; /* The keyword of the option */
  104. char    *envvar; /* Fallback environment variable name */
  105. char    *compiled; /* Fallback compiled in default value */
  106. char    *val; /* Options value */
  107. char    *label; /* Label for field in connect dialog */
  108. char    *dispchar; /* Character to display for this field */
  109. /* in a connect dialog. Values are: */
  110. /* "" Display entered value as is  */
  111. /* "*" Password field - hide value  */
  112. /* "D" Debug options - don't   */
  113. /* create a field by default */
  114. int dispsize; /* Field size in characters for dialog */
  115. } PQconninfoOption;
  116. /* ----------------
  117.  * PQArgBlock -- structure for PQfn() arguments
  118.  * ----------------
  119.  */
  120. typedef struct
  121. {
  122. int len;
  123. int isint;
  124. union
  125. {
  126. int    *ptr; /* can't use void (dec compiler barfs)  */
  127. int integer;
  128. } u;
  129. } PQArgBlock;
  130. /* ----------------
  131.  * Exported functions of libpq
  132.  * ----------------
  133.  */
  134. /* === in fe-connect.c === */
  135. /* make a new client connection to the backend */
  136. extern PGconn *PQconnectdb(const char *conninfo);
  137. extern PGconn *PQsetdbLogin(const char *pghost, const char *pgport,
  138. const char *pgoptions, const char *pgtty,
  139. const char *dbName,
  140.  const char *login, const char *pwd);
  141. #define PQsetdb(M_PGHOST,M_PGPORT,M_PGOPT,M_PGTTY,M_DBNAME)  
  142. PQsetdbLogin(M_PGHOST, M_PGPORT, M_PGOPT, M_PGTTY, M_DBNAME, NULL, NULL)
  143. /* get info about connection options known to PQconnectdb */
  144. extern PQconninfoOption *PQconndefaults(void);
  145. /* close the current connection and free the PGconn data structure */
  146. extern void PQfinish(PGconn *conn);
  147. /*
  148.  * close the current connection and restablish a new one with the same
  149.  * parameters
  150.  */
  151. extern void PQreset(PGconn *conn);
  152. /* issue a cancel request */
  153. extern int PQrequestCancel(PGconn *conn);
  154. /* Accessor functions for PGconn objects */
  155. extern char *PQdb(PGconn *conn);
  156. extern char *PQuser(PGconn *conn);
  157. extern char *PQpass(PGconn *conn);
  158. extern char *PQhost(PGconn *conn);
  159. extern char *PQport(PGconn *conn);
  160. extern char *PQtty(PGconn *conn);
  161. extern char *PQoptions(PGconn *conn);
  162. extern ConnStatusType PQstatus(PGconn *conn);
  163. extern char *PQerrorMessage(PGconn *conn);
  164. extern int PQsocket(PGconn *conn);
  165. extern int PQbackendPID(PGconn *conn);
  166. /* Enable/disable tracing */
  167. extern void PQtrace(PGconn *conn, FILE *debug_port);
  168. extern void PQuntrace(PGconn *conn);
  169. /* Override default notice processor */
  170. extern void PQsetNoticeProcessor(PGconn *conn,
  171.  PQnoticeProcessor proc,
  172.  void *arg);
  173. /* === in fe-exec.c === */
  174. /* Simple synchronous query */
  175. extern PGresult *PQexec(PGconn *conn, const char *query);
  176. extern PGnotify *PQnotifies(PGconn *conn);
  177. /* Interface for multiple-result or asynchronous queries */
  178. extern int PQsendQuery(PGconn *conn, const char *query);
  179. extern PGresult *PQgetResult(PGconn *conn);
  180. /* Routines for managing an asychronous query */
  181. extern int PQisBusy(PGconn *conn);
  182. extern int PQconsumeInput(PGconn *conn);
  183. /* Routines for copy in/out */
  184. extern int PQgetline(PGconn *conn, char *string, int length);
  185. extern int PQputline(PGconn *conn, const char *string);
  186. extern int PQgetlineAsync(PGconn *conn, char *buffer, int bufsize);
  187. extern int PQputnbytes(PGconn *conn, const char *buffer, int nbytes);
  188. extern int PQendcopy(PGconn *conn);
  189. /*
  190.  * "Fast path" interface --- not really recommended for application
  191.  * use
  192.  */
  193. extern PGresult *PQfn(PGconn *conn,
  194.   int fnid,
  195.   int *result_buf,
  196.   int *result_len,
  197.   int result_is_int,
  198.   PQArgBlock *args,
  199.   int nargs);
  200. /* Accessor functions for PGresult objects */
  201. extern ExecStatusType PQresultStatus(PGresult *res);
  202. extern const char *PQresStatus(ExecStatusType status);
  203. extern const char *PQresultErrorMessage(PGresult *res);
  204. extern int PQntuples(PGresult *res);
  205. extern int PQnfields(PGresult *res);
  206. extern int PQbinaryTuples(PGresult *res);
  207. extern char *PQfname(PGresult *res, int field_num);
  208. extern int PQfnumber(PGresult *res, const char *field_name);
  209. extern Oid PQftype(PGresult *res, int field_num);
  210. extern int PQfsize(PGresult *res, int field_num);
  211. extern int PQfmod(PGresult *res, int field_num);
  212. extern char *PQcmdStatus(PGresult *res);
  213. extern const char *PQoidStatus(PGresult *res);
  214. extern const char *PQcmdTuples(PGresult *res);
  215. extern char *PQgetvalue(PGresult *res, int tup_num, int field_num);
  216. extern int PQgetlength(PGresult *res, int tup_num, int field_num);
  217. extern int PQgetisnull(PGresult *res, int tup_num, int field_num);
  218. /* Delete a PGresult */
  219. extern void PQclear(PGresult *res);
  220. /*
  221.  * Make an empty PGresult with given status (some apps find this
  222.  * useful). If conn is not NULL and status indicates an error, the
  223.  * conn's errorMessage is copied.
  224.  */
  225. extern PGresult *PQmakeEmptyPGresult(PGconn *conn, ExecStatusType status);
  226. /* === in fe-print.c === */
  227. extern void PQprint(FILE *fout, /* output stream */
  228. PGresult *res,
  229. PQprintOpt *ps); /* option structure */
  230. /*
  231.  * PQdisplayTuples() is a better version of PQprintTuples(), but both
  232.  * are obsoleted by PQprint().
  233.  */
  234. extern void PQdisplayTuples(PGresult *res,
  235. FILE *fp, /* where to send the
  236.  * output */
  237. int fillAlign, /* pad the fields with
  238.  * spaces */
  239. const char *fieldSep, /* field separator */
  240. int printHeader, /* display headers? */
  241. int quiet);
  242. extern void PQprintTuples(PGresult *res,
  243.   FILE *fout, /* output stream */
  244.   int printAttName, /* print attribute names
  245.  * or not */
  246.   int terseOutput, /* delimiter bars or
  247.  * not? */
  248.   int width); /* width of column, if
  249.  * 0, use variable width */
  250. /* Determine length of multibyte encoded char at *s */
  251. extern int PQmblen(unsigned char *s);
  252. /* === in fe-lobj.c === */
  253. /* Large-object access routines */
  254. extern int lo_open(PGconn *conn, Oid lobjId, int mode);
  255. extern int lo_close(PGconn *conn, int fd);
  256. extern int lo_read(PGconn *conn, int fd, char *buf, int len);
  257. extern int lo_write(PGconn *conn, int fd, char *buf, int len);
  258. extern int lo_lseek(PGconn *conn, int fd, int offset, int whence);
  259. extern Oid lo_creat(PGconn *conn, int mode);
  260. extern int lo_tell(PGconn *conn, int fd);
  261. extern int lo_unlink(PGconn *conn, Oid lobjId);
  262. extern Oid lo_import(PGconn *conn, char *filename);
  263. extern int lo_export(PGconn *conn, Oid lobjId, char *filename);
  264. #ifdef __cplusplus
  265. };
  266. #endif
  267. #endif  /* LIBPQ_FE_H */