2004-05-20 10:27:49 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 5 |
|
|
|
|
+----------------------------------------------------------------------+
|
2014-01-03 11:08:10 +08:00
|
|
|
| Copyright (c) 1997-2014 The PHP Group |
|
2004-05-20 10:27:49 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2004-05-20 10:27:49 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2004-05-20 10:27:49 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2005-11-29 10:11:39 +08:00
|
|
|
| Authors: Edin Kadribasic <edink@emini.dk> |
|
|
|
|
| Ilia Alshanestsky <ilia@prohost.org> |
|
|
|
|
| Wez Furlong <wez@php.net> |
|
2004-05-20 10:27:49 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef PHP_PDO_PGSQL_INT_H
|
|
|
|
#define PHP_PDO_PGSQL_INT_H
|
|
|
|
|
|
|
|
#include <libpq-fe.h>
|
2005-11-29 10:11:39 +08:00
|
|
|
#include <libpq/libpq-fs.h>
|
2005-07-02 06:30:55 +08:00
|
|
|
#include <php.h>
|
2004-05-20 10:27:49 +08:00
|
|
|
|
2005-05-14 02:09:03 +08:00
|
|
|
#define PHP_PDO_PGSQL_CONNECTION_FAILURE_SQLSTATE "08006"
|
|
|
|
|
2004-05-21 01:43:56 +08:00
|
|
|
typedef struct {
|
|
|
|
const char *file;
|
|
|
|
int line;
|
|
|
|
unsigned int errcode;
|
|
|
|
char *errmsg;
|
|
|
|
} pdo_pgsql_error_info;
|
|
|
|
|
2004-05-20 10:27:49 +08:00
|
|
|
/* stuff we use in a pgsql database handle */
|
|
|
|
typedef struct {
|
|
|
|
PGconn *server;
|
|
|
|
unsigned attached:1;
|
|
|
|
unsigned _reserved:31;
|
2004-05-21 01:43:56 +08:00
|
|
|
pdo_pgsql_error_info einfo;
|
2004-05-21 02:00:24 +08:00
|
|
|
Oid pgoid;
|
2009-10-08 01:40:16 +08:00
|
|
|
/* The following two variables have the same purpose. Unfortunately we need
|
2014-03-09 19:14:23 +08:00
|
|
|
to keep track of two different attributes having the same effect. */
|
2009-10-08 01:40:16 +08:00
|
|
|
int emulate_prepares;
|
2014-03-09 19:14:23 +08:00
|
|
|
int disable_native_prepares; /* deprecated since 5.6 */
|
2014-03-09 21:08:17 +08:00
|
|
|
int disable_prepares;
|
2014-03-09 18:43:13 +08:00
|
|
|
unsigned int stmt_counter;
|
2004-05-20 10:27:49 +08:00
|
|
|
} pdo_pgsql_db_handle;
|
|
|
|
|
|
|
|
typedef struct {
|
2005-01-23 18:57:11 +08:00
|
|
|
char *def;
|
|
|
|
Oid pgsql_type;
|
|
|
|
long intval;
|
|
|
|
zend_bool boolval;
|
2004-05-20 10:27:49 +08:00
|
|
|
} pdo_pgsql_column;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
pdo_pgsql_db_handle *H;
|
|
|
|
PGresult *result;
|
|
|
|
int current_row;
|
|
|
|
pdo_pgsql_column *cols;
|
2005-01-13 09:59:39 +08:00
|
|
|
char *cursor_name;
|
2005-07-08 23:27:34 +08:00
|
|
|
char *stmt_name;
|
2005-11-25 11:35:04 +08:00
|
|
|
char *query;
|
2005-07-08 23:27:34 +08:00
|
|
|
char **param_values;
|
|
|
|
int *param_lengths;
|
|
|
|
int *param_formats;
|
2005-11-25 11:35:04 +08:00
|
|
|
Oid *param_types;
|
2009-05-13 06:18:15 +08:00
|
|
|
zend_bool is_prepared;
|
2004-05-20 10:27:49 +08:00
|
|
|
} pdo_pgsql_stmt;
|
|
|
|
|
|
|
|
typedef struct {
|
2005-11-29 10:11:39 +08:00
|
|
|
Oid oid;
|
2004-05-20 10:27:49 +08:00
|
|
|
} pdo_pgsql_bound_param;
|
|
|
|
|
|
|
|
extern pdo_driver_t pdo_pgsql_driver;
|
|
|
|
|
2013-06-04 23:20:20 +08:00
|
|
|
extern int _pdo_pgsql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const char *msg, const char *file, int line TSRMLS_DC);
|
|
|
|
#define pdo_pgsql_error(d,e,z) _pdo_pgsql_error(d, NULL, e, z, NULL, __FILE__, __LINE__ TSRMLS_CC)
|
|
|
|
#define pdo_pgsql_error_msg(d,e,m) _pdo_pgsql_error(d, NULL, e, NULL, m, __FILE__, __LINE__ TSRMLS_CC)
|
|
|
|
#define pdo_pgsql_error_stmt(s,e,z) _pdo_pgsql_error(s->dbh, s, e, z, NULL, __FILE__, __LINE__ TSRMLS_CC)
|
|
|
|
#define pdo_pgsql_error_stmt_msg(s,e,m) _pdo_pgsql_error(s->dbh, s, e, NULL, m, __FILE__, __LINE__ TSRMLS_CC)
|
2004-05-20 10:27:49 +08:00
|
|
|
|
|
|
|
extern struct pdo_stmt_methods pgsql_stmt_methods;
|
|
|
|
|
2005-07-02 06:30:55 +08:00
|
|
|
#define pdo_pgsql_sqlstate(r) PQresultErrorField(r, PG_DIAG_SQLSTATE)
|
|
|
|
|
2005-07-20 10:37:57 +08:00
|
|
|
enum {
|
|
|
|
PDO_PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT = PDO_ATTR_DRIVER_SPECIFIC,
|
2014-03-09 21:08:17 +08:00
|
|
|
PDO_PGSQL_ATTR_DISABLE_PREPARES,
|
2005-07-20 10:37:57 +08:00
|
|
|
};
|
|
|
|
|
2005-11-29 10:11:39 +08:00
|
|
|
struct pdo_pgsql_lob_self {
|
2014-05-15 22:33:13 +08:00
|
|
|
zval dbh;
|
2005-11-29 10:11:39 +08:00
|
|
|
PGconn *conn;
|
|
|
|
int lfd;
|
|
|
|
Oid oid;
|
|
|
|
};
|
|
|
|
|
2010-06-10 20:11:19 +08:00
|
|
|
enum pdo_pgsql_specific_constants {
|
|
|
|
PGSQL_TRANSACTION_IDLE = PQTRANS_IDLE,
|
|
|
|
PGSQL_TRANSACTION_ACTIVE = PQTRANS_ACTIVE,
|
|
|
|
PGSQL_TRANSACTION_INTRANS = PQTRANS_INTRANS,
|
|
|
|
PGSQL_TRANSACTION_INERROR = PQTRANS_INERROR,
|
|
|
|
PGSQL_TRANSACTION_UNKNOWN = PQTRANS_UNKNOWN
|
|
|
|
};
|
2005-11-29 10:11:39 +08:00
|
|
|
|
2014-05-15 22:33:13 +08:00
|
|
|
php_stream *pdo_pgsql_create_lob_stream(zval *pdh, int lfd, Oid oid TSRMLS_DC);
|
2005-11-29 10:11:39 +08:00
|
|
|
extern php_stream_ops pdo_pgsql_lob_stream_ops;
|
|
|
|
|
2004-05-20 10:27:49 +08:00
|
|
|
#endif /* PHP_PDO_PGSQL_INT_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
|
|
|
*/
|