mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
23 lines
564 B
C
23 lines
564 B
C
#ifndef _PGSQL_H
|
|
#define _PGSQL_H
|
|
|
|
/* Definitions for the PostgreSQL efuns */
|
|
|
|
#define PGRES_EMPTY_QUERY 0 /* Unimplemented */
|
|
#define PGRES_COMMAND_OK 1
|
|
#define PGRES_TUPLES_OK 2
|
|
#define PGRES_COPY_OUT 3 /* Unimplemented */
|
|
#define PGRES_COPY_IN 4 /* Unimplemented */
|
|
#define PGRES_BAD_RESPONSE 5
|
|
#define PGRES_NONFATAL_ERROR 6
|
|
#define PGRES_FATAL_ERROR 7
|
|
#define PGRES_NOTICE 99
|
|
|
|
#define PGCONN_SUCCESS 100
|
|
#define PGCONN_FAILED 101
|
|
#define PGCONN_ABORTED 102
|
|
|
|
#define PG_RESULT_ARRAY 0
|
|
#define PG_RESULT_MAP 1
|
|
|
|
#endif
|