
PQExec(" ") in the wrapper around PQnotifies(), fix the Makefile for the examples so that they will actually compile properly (with the exception of #5, which depends on internal headers), make a minor change to libpq++.h so that "make examples" now works on my machine, update some documentation, fix some grammatical problems, and remove some of the more hideous comments. Neil Conway
37 lines
987 B
C
37 lines
987 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* libpq++.h
|
|
*
|
|
*
|
|
* DESCRIPTION
|
|
* C++ client interface to Postgres
|
|
* used for building front-end applications
|
|
*
|
|
* NOTES
|
|
* This is intended to be included by client applications.
|
|
* It will not work as an inclusion in the libpq++ sources, since
|
|
* in the build environment the individual include files are not
|
|
* yet installed in a subdirectory.
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: libpq++.h,v 1.11 2002/06/15 18:49:29 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
#ifndef LIBPQXX_H
|
|
#define LIBPQXX_H
|
|
|
|
#include <string.h>
|
|
|
|
#include "libpq++/pgconnection.h"
|
|
#include "libpq++/pgdatabase.h"
|
|
#include "libpq++/pglobject.h"
|
|
#include "libpq++/pgtransdb.h"
|
|
#include "libpq++/pgcursordb.h"
|
|
|
|
#endif /* LIBPQXX_H */
|