logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

PQregisterSubClasses - Registers a type aliases or sub-classes.

Author

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

Deprecated

       THIS  FUNCTION  IS  DEPRECATED.   New  applications  should  use PQregisterTypes.  This function is now a
       wrapper to PQregisterTypes.

Description

       The PQregisterSubClasses() function allows an application to register an alias or  sub-class  of  another
       type.

       The  types  argument is an array containing count sub class types to register.  The typname member of the
       PGregisterType structure must specify an inheritence relationship: ex. "myint=int4" where myint  inherits
       from  int4.   The  ´=´  is  called  the  inheritence  operator.  If both typput and typget members of the
       PGregisterType structure are NULL, the type at that element will behave identically to  the  type  it  is
       inheriting from; an alias.  Otherwise, the base type's put and/or get routines will be overridden.

       NOTE:  The  typname  member  of  the  PGregisterType  structure can optionally contain the type's schema:
       schema.typname.

       WARNING: PQparamCreate is only aware of types that have already been registered.  If you need  to  put  a
       type into a param, make sure it is first registered.

Examples

       None.

Name

       PQregisterSubClasses - Registers a type aliases or sub-classes.

Reporting Bugs

       Report bugs to <libpqtypes@esilo.com>.

Return Value

       On  success,  a non-zero value is returned.  On error, zero is returned and PQgeterror(3) will contain an
       error message.

See Also

pqt-handlers(3), PQputf(3), PQgetf(3)

libpqtypes                                            2011                               PQregisterSubClasses(3)

Synopsis

#include<libpqtypes.h>intPQregisterSubClasses(PGconn*conn,PGregisterType*types,intcount);

See Also