libpqtypes home page

PQtypesRegister(3)             libpqtypes Manual            PQtypesRegister(3)



NAME
       PQtypesRegister - Registers libpqtypes with the libpq event system.

SYNOPSIS
       #include <libpqtypes.h>

       int PQtypesRegister(PGconn *conn);

DESCRIPTION
       libpqtypes  makes  use  of the libpq Event System.  Before using libpq-
       types, you must register libpqtypes as a libpq EventProc.  The function
       takes  a  PGconn  that  libpqtypes will be registered with; each PGconn
       requires its own registration.

RETURN VALUE
       The function returns zero if it fails and non-zero if it succeeds.

EXAMPLES
   Registering libpqtypes
       The examples shows how to register libpqtypes with the libpq event sys-
       tem.

              /* call prior to any other libpqtypes functions that operate on conn. */
              PQtypesRegister(conn);

AUTHOR
       A  contribution  of  eSilo, LLC. for the PostgreSQL Database Management
       System.  Written by Andrew Chernow and Merlin Moncure.

REPORTING BUGS
       Report bugs to <libpqtypes@esilo.com>.

COPYRIGHT
       Copyright (c) 2009 eSilo, LLC. All rights reserved.
       This is free software; see the source for copying conditions.  There is
       NO  warranty; not even for MERCHANTABILITY or  FITNESS FOR A PARTICULAR
       PURPOSE.

SEE ALSO
       None




libpqtypes                           2009                   PQtypesRegister(3)

libpqtypes home page