12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286 |
- /*
- +----------------------------------------------------------------------+
- | PHP Version 7 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2018 The PHP Group |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.01 of the PHP license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available through the world-wide-web at the following url: |
- | http://www.php.net/license/3_01.txt |
- | 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. |
- +----------------------------------------------------------------------+
- | Authors: Edin Kadribasic <edink@emini.dk> |
- | Ilia Alshanestsky <ilia@prohost.org> |
- | Wez Furlong <wez@php.net> |
- +----------------------------------------------------------------------+
- */
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include "php.h"
- #include "php_ini.h"
- #include "ext/standard/info.h"
- #include "ext/standard/php_string.h"
- #include "main/php_network.h"
- #include "pdo/php_pdo.h"
- #include "pdo/php_pdo_driver.h"
- #include "pdo/php_pdo_error.h"
- #include "ext/standard/file.h"
- #undef PACKAGE_BUGREPORT
- #undef PACKAGE_NAME
- #undef PACKAGE_STRING
- #undef PACKAGE_TARNAME
- #undef PACKAGE_VERSION
- #include "pg_config.h" /* needed for PG_VERSION */
- #include "php_pdo_pgsql.h"
- #include "php_pdo_pgsql_int.h"
- #include "zend_exceptions.h"
- static char * _pdo_pgsql_trim_message(const char *message, int persistent)
- {
- register int i = strlen(message)-1;
- char *tmp;
- if (i>1 && (message[i-1] == '\r' || message[i-1] == '\n') && message[i] == '.') {
- --i;
- }
- while (i>0 && (message[i] == '\r' || message[i] == '\n')) {
- --i;
- }
- ++i;
- tmp = pemalloc(i + 1, persistent);
- memcpy(tmp, message, i);
- tmp[i] = '\0';
- return tmp;
- }
- static zend_string* _pdo_pgsql_escape_credentials(char *str)
- {
- if (str) {
- return php_addcslashes_str(str, strlen(str), "\\'", sizeof("\\'"));
- }
- return NULL;
- }
- 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) /* {{{ */
- {
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- pdo_error_type *pdo_err = stmt ? &stmt->error_code : &dbh->error_code;
- pdo_pgsql_error_info *einfo = &H->einfo;
- char *errmsg = PQerrorMessage(H->server);
- einfo->errcode = errcode;
- einfo->file = file;
- einfo->line = line;
- if (einfo->errmsg) {
- pefree(einfo->errmsg, dbh->is_persistent);
- einfo->errmsg = NULL;
- }
- if (sqlstate == NULL || strlen(sqlstate) >= sizeof(pdo_error_type)) {
- strcpy(*pdo_err, "HY000");
- }
- else {
- strcpy(*pdo_err, sqlstate);
- }
- if (msg) {
- einfo->errmsg = estrdup(msg);
- }
- else if (errmsg) {
- einfo->errmsg = _pdo_pgsql_trim_message(errmsg, dbh->is_persistent);
- }
- if (!dbh->methods) {
- pdo_throw_exception(einfo->errcode, einfo->errmsg, pdo_err);
- }
- return errcode;
- }
- /* }}} */
- static void _pdo_pgsql_notice(pdo_dbh_t *dbh, const char *message) /* {{{ */
- {
- /* pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data; */
- }
- /* }}} */
- static int pdo_pgsql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */
- {
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- pdo_pgsql_error_info *einfo = &H->einfo;
- if (einfo->errcode) {
- add_next_index_long(info, einfo->errcode);
- add_next_index_string(info, einfo->errmsg);
- }
- return 1;
- }
- /* }}} */
- /* {{{ pdo_pgsql_create_lob_stream */
- static size_t pgsql_lob_write(php_stream *stream, const char *buf, size_t count)
- {
- struct pdo_pgsql_lob_self *self = (struct pdo_pgsql_lob_self*)stream->abstract;
- return lo_write(self->conn, self->lfd, (char*)buf, count);
- }
- static size_t pgsql_lob_read(php_stream *stream, char *buf, size_t count)
- {
- struct pdo_pgsql_lob_self *self = (struct pdo_pgsql_lob_self*)stream->abstract;
- return lo_read(self->conn, self->lfd, buf, count);
- }
- static int pgsql_lob_close(php_stream *stream, int close_handle)
- {
- struct pdo_pgsql_lob_self *self = (struct pdo_pgsql_lob_self*)stream->abstract;
- if (close_handle) {
- lo_close(self->conn, self->lfd);
- }
- zval_ptr_dtor(&self->dbh);
- efree(self);
- return 0;
- }
- static int pgsql_lob_flush(php_stream *stream)
- {
- return 0;
- }
- static int pgsql_lob_seek(php_stream *stream, zend_off_t offset, int whence,
- zend_off_t *newoffset)
- {
- struct pdo_pgsql_lob_self *self = (struct pdo_pgsql_lob_self*)stream->abstract;
- #if HAVE_PG_LO64 && ZEND_ENABLE_ZVAL_LONG64
- zend_off_t pos = lo_lseek64(self->conn, self->lfd, offset, whence);
- #else
- zend_off_t pos = lo_lseek(self->conn, self->lfd, offset, whence);
- #endif
- *newoffset = pos;
- return pos >= 0 ? 0 : -1;
- }
- const php_stream_ops pdo_pgsql_lob_stream_ops = {
- pgsql_lob_write,
- pgsql_lob_read,
- pgsql_lob_close,
- pgsql_lob_flush,
- "pdo_pgsql lob stream",
- pgsql_lob_seek,
- NULL,
- NULL,
- NULL
- };
- php_stream *pdo_pgsql_create_lob_stream(zval *dbh, int lfd, Oid oid)
- {
- php_stream *stm;
- struct pdo_pgsql_lob_self *self = ecalloc(1, sizeof(*self));
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)(Z_PDO_DBH_P(dbh))->driver_data;
- ZVAL_COPY_VALUE(&self->dbh, dbh);
- self->lfd = lfd;
- self->oid = oid;
- self->conn = H->server;
- stm = php_stream_alloc(&pdo_pgsql_lob_stream_ops, self, 0, "r+b");
- if (stm) {
- Z_ADDREF_P(dbh);
- return stm;
- }
- efree(self);
- return NULL;
- }
- /* }}} */
- static int pgsql_handle_closer(pdo_dbh_t *dbh) /* {{{ */
- {
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- if (H) {
- if (H->server) {
- PQfinish(H->server);
- H->server = NULL;
- }
- if (H->einfo.errmsg) {
- pefree(H->einfo.errmsg, dbh->is_persistent);
- H->einfo.errmsg = NULL;
- }
- pefree(H, dbh->is_persistent);
- dbh->driver_data = NULL;
- }
- return 0;
- }
- /* }}} */
- static int pgsql_handle_preparer(pdo_dbh_t *dbh, const char *sql, size_t sql_len, pdo_stmt_t *stmt, zval *driver_options)
- {
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- pdo_pgsql_stmt *S = ecalloc(1, sizeof(pdo_pgsql_stmt));
- int scrollable;
- int ret;
- char *nsql = NULL;
- size_t nsql_len = 0;
- int emulate = 0;
- int execute_only = 0;
- S->H = H;
- stmt->driver_data = S;
- stmt->methods = &pgsql_stmt_methods;
- scrollable = pdo_attr_lval(driver_options, PDO_ATTR_CURSOR,
- PDO_CURSOR_FWDONLY) == PDO_CURSOR_SCROLL;
- if (scrollable) {
- if (S->cursor_name) {
- efree(S->cursor_name);
- }
- spprintf(&S->cursor_name, 0, "pdo_crsr_%08x", ++H->stmt_counter);
- emulate = 1;
- } else if (driver_options) {
- if (pdo_attr_lval(driver_options, PDO_ATTR_EMULATE_PREPARES, H->emulate_prepares) == 1) {
- emulate = 1;
- }
- if (pdo_attr_lval(driver_options, PDO_PGSQL_ATTR_DISABLE_PREPARES, H->disable_prepares) == 1) {
- execute_only = 1;
- }
- } else {
- emulate = H->disable_native_prepares || H->emulate_prepares;
- execute_only = H->disable_prepares;
- }
- if (!emulate && PQprotocolVersion(H->server) > 2) {
- stmt->supports_placeholders = PDO_PLACEHOLDER_NAMED;
- stmt->named_rewrite_template = "$%d";
- ret = pdo_parse_params(stmt, (char*)sql, sql_len, &nsql, &nsql_len);
- if (ret == 1) {
- /* query was re-written */
- sql = nsql;
- } else if (ret == -1) {
- /* couldn't grok it */
- strcpy(dbh->error_code, stmt->error_code);
- return 0;
- }
- if (!execute_only) {
- /* prepared query: set the query name and defer the
- actual prepare until the first execute call */
- spprintf(&S->stmt_name, 0, "pdo_stmt_%08x", ++H->stmt_counter);
- }
- if (nsql) {
- S->query = nsql;
- } else {
- S->query = estrdup(sql);
- }
- return 1;
- }
- stmt->supports_placeholders = PDO_PLACEHOLDER_NONE;
- return 1;
- }
- static zend_long pgsql_handle_doer(pdo_dbh_t *dbh, const char *sql, size_t sql_len)
- {
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- PGresult *res;
- zend_long ret = 1;
- ExecStatusType qs;
- if (!(res = PQexec(H->server, sql))) {
- /* fatal error */
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- return -1;
- }
- qs = PQresultStatus(res);
- if (qs != PGRES_COMMAND_OK && qs != PGRES_TUPLES_OK) {
- pdo_pgsql_error(dbh, qs, pdo_pgsql_sqlstate(res));
- PQclear(res);
- return -1;
- }
- H->pgoid = PQoidValue(res);
- if (qs == PGRES_COMMAND_OK) {
- ZEND_ATOL(ret, PQcmdTuples(res));
- } else {
- ret = Z_L(0);
- }
- PQclear(res);
- return ret;
- }
- static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen, enum pdo_param_type paramtype)
- {
- unsigned char *escaped;
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- size_t tmp_len;
- switch (paramtype) {
- case PDO_PARAM_LOB:
- /* escapedlen returned by PQescapeBytea() accounts for trailing 0 */
- escaped = PQescapeByteaConn(H->server, (unsigned char *)unquoted, unquotedlen, &tmp_len);
- *quotedlen = tmp_len + 1;
- *quoted = emalloc(*quotedlen + 1);
- memcpy((*quoted)+1, escaped, *quotedlen-2);
- (*quoted)[0] = '\'';
- (*quoted)[*quotedlen-1] = '\'';
- (*quoted)[*quotedlen] = '\0';
- PQfreemem(escaped);
- break;
- default:
- *quoted = safe_emalloc(2, unquotedlen, 3);
- (*quoted)[0] = '\'';
- *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, unquotedlen, NULL);
- (*quoted)[*quotedlen + 1] = '\'';
- (*quoted)[*quotedlen + 2] = '\0';
- *quotedlen += 2;
- }
- return 1;
- }
- static char *pdo_pgsql_last_insert_id(pdo_dbh_t *dbh, const char *name, size_t *len)
- {
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- char *id = NULL;
- PGresult *res;
- ExecStatusType status;
- if (name == NULL) {
- res = PQexec(H->server, "SELECT LASTVAL()");
- } else {
- const char *q[1];
- q[0] = name;
- res = PQexecParams(H->server, "SELECT CURRVAL($1)", 1, NULL, q, NULL, NULL, 0);
- }
- status = PQresultStatus(res);
- if (res && (status == PGRES_TUPLES_OK)) {
- id = estrdup((char *)PQgetvalue(res, 0, 0));
- *len = PQgetlength(res, 0, 0);
- } else {
- pdo_pgsql_error(dbh, status, pdo_pgsql_sqlstate(res));
- }
- if (res) {
- PQclear(res);
- }
- return id;
- }
- static int pdo_pgsql_get_attribute(pdo_dbh_t *dbh, zend_long attr, zval *return_value)
- {
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- switch (attr) {
- case PDO_ATTR_EMULATE_PREPARES:
- ZVAL_BOOL(return_value, H->emulate_prepares);
- break;
- case PDO_PGSQL_ATTR_DISABLE_PREPARES:
- ZVAL_BOOL(return_value, H->disable_prepares);
- break;
- case PDO_ATTR_CLIENT_VERSION:
- ZVAL_STRING(return_value, PG_VERSION);
- break;
- case PDO_ATTR_SERVER_VERSION:
- if (PQprotocolVersion(H->server) >= 3) { /* PostgreSQL 7.4 or later */
- ZVAL_STRING(return_value, (char*)PQparameterStatus(H->server, "server_version"));
- } else /* emulate above via a query */
- {
- PGresult *res = PQexec(H->server, "SELECT VERSION()");
- if (res && PQresultStatus(res) == PGRES_TUPLES_OK) {
- ZVAL_STRING(return_value, (char *)PQgetvalue(res, 0, 0));
- }
- if (res) {
- PQclear(res);
- }
- }
- break;
- case PDO_ATTR_CONNECTION_STATUS:
- switch (PQstatus(H->server)) {
- case CONNECTION_STARTED:
- ZVAL_STRINGL(return_value, "Waiting for connection to be made.", sizeof("Waiting for connection to be made.")-1);
- break;
- case CONNECTION_MADE:
- case CONNECTION_OK:
- ZVAL_STRINGL(return_value, "Connection OK; waiting to send.", sizeof("Connection OK; waiting to send.")-1);
- break;
- case CONNECTION_AWAITING_RESPONSE:
- ZVAL_STRINGL(return_value, "Waiting for a response from the server.", sizeof("Waiting for a response from the server.")-1);
- break;
- case CONNECTION_AUTH_OK:
- ZVAL_STRINGL(return_value, "Received authentication; waiting for backend start-up to finish.", sizeof("Received authentication; waiting for backend start-up to finish.")-1);
- break;
- #ifdef CONNECTION_SSL_STARTUP
- case CONNECTION_SSL_STARTUP:
- ZVAL_STRINGL(return_value, "Negotiating SSL encryption.", sizeof("Negotiating SSL encryption.")-1);
- break;
- #endif
- case CONNECTION_SETENV:
- ZVAL_STRINGL(return_value, "Negotiating environment-driven parameter settings.", sizeof("Negotiating environment-driven parameter settings.")-1);
- break;
- case CONNECTION_BAD:
- default:
- ZVAL_STRINGL(return_value, "Bad connection.", sizeof("Bad connection.")-1);
- break;
- }
- break;
- case PDO_ATTR_SERVER_INFO: {
- int spid = PQbackendPID(H->server);
- zend_string *str_info =
- strpprintf(0,
- "PID: %d; Client Encoding: %s; Is Superuser: %s; Session Authorization: %s; Date Style: %s",
- spid,
- (char*)PQparameterStatus(H->server, "client_encoding"),
- (char*)PQparameterStatus(H->server, "is_superuser"),
- (char*)PQparameterStatus(H->server, "session_authorization"),
- (char*)PQparameterStatus(H->server, "DateStyle"));
- ZVAL_STR(return_value, str_info);
- }
- break;
- default:
- return 0;
- }
- return 1;
- }
- /* {{{ */
- static int pdo_pgsql_check_liveness(pdo_dbh_t *dbh)
- {
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- if (!PQconsumeInput(H->server) || PQstatus(H->server) == CONNECTION_BAD) {
- PQreset(H->server);
- }
- return (PQstatus(H->server) == CONNECTION_OK) ? SUCCESS : FAILURE;
- }
- /* }}} */
- static int pgsql_handle_in_transaction(pdo_dbh_t *dbh)
- {
- pdo_pgsql_db_handle *H;
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- return PQtransactionStatus(H->server) > PQTRANS_IDLE;
- }
- static int pdo_pgsql_transaction_cmd(const char *cmd, pdo_dbh_t *dbh)
- {
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- PGresult *res;
- int ret = 1;
- res = PQexec(H->server, cmd);
- if (PQresultStatus(res) != PGRES_COMMAND_OK) {
- pdo_pgsql_error(dbh, PQresultStatus(res), pdo_pgsql_sqlstate(res));
- ret = 0;
- }
- PQclear(res);
- return ret;
- }
- static int pgsql_handle_begin(pdo_dbh_t *dbh)
- {
- return pdo_pgsql_transaction_cmd("BEGIN", dbh);
- }
- static int pgsql_handle_commit(pdo_dbh_t *dbh)
- {
- int ret = pdo_pgsql_transaction_cmd("COMMIT", dbh);
- /* When deferred constraints are used the commit could
- fail, and a ROLLBACK implicitly ran. See bug #67462 */
- if (!ret) {
- dbh->in_txn = pgsql_handle_in_transaction(dbh);
- }
- return ret;
- }
- static int pgsql_handle_rollback(pdo_dbh_t *dbh)
- {
- return pdo_pgsql_transaction_cmd("ROLLBACK", dbh);
- }
- /* {{{ proto string PDO::pgsqlCopyFromArray(string $table_name , array $rows [, string $delimiter [, string $null_as ] [, string $fields])
- Returns true if the copy worked fine or false if error */
- static PHP_METHOD(PDO, pgsqlCopyFromArray)
- {
- pdo_dbh_t *dbh;
- pdo_pgsql_db_handle *H;
- zval *pg_rows;
- char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL;
- size_t table_name_len, pg_delim_len = 0, pg_null_as_len = 0, pg_fields_len;
- char *query;
- PGresult *pgsql_result;
- ExecStatusType status;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "sa|sss",
- &table_name, &table_name_len, &pg_rows,
- &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) {
- return;
- }
- if (!zend_hash_num_elements(Z_ARRVAL_P(pg_rows))) {
- php_error_docref(NULL, E_WARNING, "Cannot copy from an empty array");
- RETURN_FALSE;
- }
- dbh = Z_PDO_DBH_P(getThis());
- PDO_CONSTRUCT_CHECK;
- PDO_DBH_CLEAR_ERR();
- /* using pre-9.0 syntax as PDO_pgsql is 7.4+ compatible */
- if (pg_fields) {
- spprintf(&query, 0, "COPY %s (%s) FROM STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, pg_fields, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
- } else {
- spprintf(&query, 0, "COPY %s FROM STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
- }
- /* Obtain db Handle */
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- while ((pgsql_result = PQgetResult(H->server))) {
- PQclear(pgsql_result);
- }
- pgsql_result = PQexec(H->server, query);
- efree(query);
- query = NULL;
- if (pgsql_result) {
- status = PQresultStatus(pgsql_result);
- } else {
- status = (ExecStatusType) PQstatus(H->server);
- }
- if (status == PGRES_COPY_IN && pgsql_result) {
- int command_failed = 0;
- size_t buffer_len = 0;
- zval *tmp;
- PQclear(pgsql_result);
- ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(pg_rows), tmp) {
- size_t query_len;
- convert_to_string_ex(tmp);
- if (buffer_len < Z_STRLEN_P(tmp)) {
- buffer_len = Z_STRLEN_P(tmp);
- query = erealloc(query, buffer_len + 2); /* room for \n\0 */
- }
- memcpy(query, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
- query_len = Z_STRLEN_P(tmp);
- if (query[query_len - 1] != '\n') {
- query[query_len++] = '\n';
- }
- query[query_len] = '\0';
- if (PQputCopyData(H->server, query, query_len) != 1) {
- efree(query);
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- } ZEND_HASH_FOREACH_END();
- if (query) {
- efree(query);
- }
- if (PQputCopyEnd(H->server, NULL) != 1) {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- while ((pgsql_result = PQgetResult(H->server))) {
- if (PGRES_COMMAND_OK != PQresultStatus(pgsql_result)) {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
- command_failed = 1;
- }
- PQclear(pgsql_result);
- }
- PDO_HANDLE_DBH_ERR();
- RETURN_BOOL(!command_failed);
- } else {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
- PQclear(pgsql_result);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- }
- /* }}} */
- /* {{{ proto string PDO::pgsqlCopyFromFile(string $table_name , string $filename [, string $delimiter [, string $null_as ] [, string $fields])
- Returns true if the copy worked fine or false if error */
- static PHP_METHOD(PDO, pgsqlCopyFromFile)
- {
- pdo_dbh_t *dbh;
- pdo_pgsql_db_handle *H;
- char *table_name, *filename, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL;
- size_t table_name_len, filename_len, pg_delim_len = 0, pg_null_as_len = 0, pg_fields_len;
- char *query;
- PGresult *pgsql_result;
- ExecStatusType status;
- php_stream *stream;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "sp|sss",
- &table_name, &table_name_len, &filename, &filename_len,
- &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) {
- return;
- }
- /* Obtain db Handler */
- dbh = Z_PDO_DBH_P(getThis());
- PDO_CONSTRUCT_CHECK;
- PDO_DBH_CLEAR_ERR();
- stream = php_stream_open_wrapper_ex(filename, "rb", 0, NULL, FG(default_context));
- if (!stream) {
- pdo_pgsql_error_msg(dbh, PGRES_FATAL_ERROR, "Unable to open the file");
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- /* using pre-9.0 syntax as PDO_pgsql is 7.4+ compatible */
- if (pg_fields) {
- spprintf(&query, 0, "COPY %s (%s) FROM STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, pg_fields, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
- } else {
- spprintf(&query, 0, "COPY %s FROM STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
- }
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- while ((pgsql_result = PQgetResult(H->server))) {
- PQclear(pgsql_result);
- }
- pgsql_result = PQexec(H->server, query);
- efree(query);
- if (pgsql_result) {
- status = PQresultStatus(pgsql_result);
- } else {
- status = (ExecStatusType) PQstatus(H->server);
- }
- if (status == PGRES_COPY_IN && pgsql_result) {
- char *buf;
- int command_failed = 0;
- size_t line_len = 0;
- PQclear(pgsql_result);
- while ((buf = php_stream_get_line(stream, NULL, 0, &line_len)) != NULL) {
- if (PQputCopyData(H->server, buf, line_len) != 1) {
- efree(buf);
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- php_stream_close(stream);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- efree(buf);
- }
- php_stream_close(stream);
- if (PQputCopyEnd(H->server, NULL) != 1) {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- while ((pgsql_result = PQgetResult(H->server))) {
- if (PGRES_COMMAND_OK != PQresultStatus(pgsql_result)) {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
- command_failed = 1;
- }
- PQclear(pgsql_result);
- }
- PDO_HANDLE_DBH_ERR();
- RETURN_BOOL(!command_failed);
- } else {
- php_stream_close(stream);
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
- PQclear(pgsql_result);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- }
- /* }}} */
- /* {{{ proto string PDO::pgsqlCopyToFile(string $table_name , string $filename, [string $delimiter [, string $null_as [, string $fields]]])
- Returns true if the copy worked fine or false if error */
- static PHP_METHOD(PDO, pgsqlCopyToFile)
- {
- pdo_dbh_t *dbh;
- pdo_pgsql_db_handle *H;
- char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL, *filename = NULL;
- size_t table_name_len, pg_delim_len = 0, pg_null_as_len = 0, pg_fields_len, filename_len;
- char *query;
- PGresult *pgsql_result;
- ExecStatusType status;
- php_stream *stream;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "sp|sss",
- &table_name, &table_name_len, &filename, &filename_len,
- &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) {
- return;
- }
- dbh = Z_PDO_DBH_P(getThis());
- PDO_CONSTRUCT_CHECK;
- PDO_DBH_CLEAR_ERR();
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- stream = php_stream_open_wrapper_ex(filename, "wb", 0, NULL, FG(default_context));
- if (!stream) {
- pdo_pgsql_error_msg(dbh, PGRES_FATAL_ERROR, "Unable to open the file for writing");
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- while ((pgsql_result = PQgetResult(H->server))) {
- PQclear(pgsql_result);
- }
- /* using pre-9.0 syntax as PDO_pgsql is 7.4+ compatible */
- if (pg_fields) {
- spprintf(&query, 0, "COPY %s (%s) TO STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, pg_fields, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
- } else {
- spprintf(&query, 0, "COPY %s TO STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
- }
- pgsql_result = PQexec(H->server, query);
- efree(query);
- if (pgsql_result) {
- status = PQresultStatus(pgsql_result);
- } else {
- status = (ExecStatusType) PQstatus(H->server);
- }
- if (status == PGRES_COPY_OUT && pgsql_result) {
- PQclear(pgsql_result);
- while (1) {
- char *csv = NULL;
- int ret = PQgetCopyData(H->server, &csv, 0);
- if (ret == -1) {
- break; /* done */
- } else if (ret > 0) {
- if (php_stream_write(stream, csv, ret) != (size_t)ret) {
- pdo_pgsql_error_msg(dbh, PGRES_FATAL_ERROR, "Unable to write to file");
- PQfreemem(csv);
- php_stream_close(stream);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- } else {
- PQfreemem(csv);
- }
- } else {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- php_stream_close(stream);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- }
- php_stream_close(stream);
- while ((pgsql_result = PQgetResult(H->server))) {
- PQclear(pgsql_result);
- }
- RETURN_TRUE;
- } else {
- php_stream_close(stream);
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
- PQclear(pgsql_result);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- }
- /* }}} */
- /* {{{ proto string PDO::pgsqlCopyToArray(string $table_name , [string $delimiter [, string $null_as [, string $fields]]])
- Returns true if the copy worked fine or false if error */
- static PHP_METHOD(PDO, pgsqlCopyToArray)
- {
- pdo_dbh_t *dbh;
- pdo_pgsql_db_handle *H;
- char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL;
- size_t table_name_len, pg_delim_len = 0, pg_null_as_len = 0, pg_fields_len;
- char *query;
- PGresult *pgsql_result;
- ExecStatusType status;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|sss",
- &table_name, &table_name_len,
- &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) {
- return;
- }
- dbh = Z_PDO_DBH_P(getThis());
- PDO_CONSTRUCT_CHECK;
- PDO_DBH_CLEAR_ERR();
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- while ((pgsql_result = PQgetResult(H->server))) {
- PQclear(pgsql_result);
- }
- /* using pre-9.0 syntax as PDO_pgsql is 7.4+ compatible */
- if (pg_fields) {
- spprintf(&query, 0, "COPY %s (%s) TO STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, pg_fields, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
- } else {
- spprintf(&query, 0, "COPY %s TO STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
- }
- pgsql_result = PQexec(H->server, query);
- efree(query);
- if (pgsql_result) {
- status = PQresultStatus(pgsql_result);
- } else {
- status = (ExecStatusType) PQstatus(H->server);
- }
- if (status == PGRES_COPY_OUT && pgsql_result) {
- PQclear(pgsql_result);
- array_init(return_value);
- while (1) {
- char *csv = NULL;
- int ret = PQgetCopyData(H->server, &csv, 0);
- if (ret == -1) {
- break; /* copy done */
- } else if (ret > 0) {
- add_next_index_stringl(return_value, csv, ret);
- PQfreemem(csv);
- } else {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- }
- while ((pgsql_result = PQgetResult(H->server))) {
- PQclear(pgsql_result);
- }
- } else {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
- PQclear(pgsql_result);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- }
- /* }}} */
- /* {{{ proto string PDO::pgsqlLOBCreate()
- Creates a new large object, returning its identifier. Must be called inside a transaction. */
- static PHP_METHOD(PDO, pgsqlLOBCreate)
- {
- pdo_dbh_t *dbh;
- pdo_pgsql_db_handle *H;
- Oid lfd;
- dbh = Z_PDO_DBH_P(getThis());
- PDO_CONSTRUCT_CHECK;
- PDO_DBH_CLEAR_ERR();
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- lfd = lo_creat(H->server, INV_READ|INV_WRITE);
- if (lfd != InvalidOid) {
- zend_string *buf = strpprintf(0, ZEND_ULONG_FMT, (zend_long) lfd);
- RETURN_STR(buf);
- }
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- /* }}} */
- /* {{{ proto resource PDO::pgsqlLOBOpen(string oid [, string mode = 'rb'])
- Opens an existing large object stream. Must be called inside a transaction. */
- static PHP_METHOD(PDO, pgsqlLOBOpen)
- {
- pdo_dbh_t *dbh;
- pdo_pgsql_db_handle *H;
- Oid oid;
- int lfd;
- char *oidstr;
- size_t oidstrlen;
- char *modestr = "rb";
- size_t modestrlen;
- int mode = INV_READ;
- char *end_ptr;
- if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "s|s",
- &oidstr, &oidstrlen, &modestr, &modestrlen)) {
- RETURN_FALSE;
- }
- oid = (Oid)strtoul(oidstr, &end_ptr, 10);
- if (oid == 0 && (errno == ERANGE || errno == EINVAL)) {
- RETURN_FALSE;
- }
- if (strpbrk(modestr, "+w")) {
- mode = INV_READ|INV_WRITE;
- }
- dbh = Z_PDO_DBH_P(getThis());
- PDO_CONSTRUCT_CHECK;
- PDO_DBH_CLEAR_ERR();
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- lfd = lo_open(H->server, oid, mode);
- if (lfd >= 0) {
- php_stream *stream = pdo_pgsql_create_lob_stream(getThis(), lfd, oid);
- if (stream) {
- php_stream_to_zval(stream, return_value);
- return;
- }
- } else {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- }
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- /* }}} */
- /* {{{ proto bool PDO::pgsqlLOBUnlink(string oid)
- Deletes the large object identified by oid. Must be called inside a transaction. */
- static PHP_METHOD(PDO, pgsqlLOBUnlink)
- {
- pdo_dbh_t *dbh;
- pdo_pgsql_db_handle *H;
- Oid oid;
- char *oidstr, *end_ptr;
- size_t oidlen;
- if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "s",
- &oidstr, &oidlen)) {
- RETURN_FALSE;
- }
- oid = (Oid)strtoul(oidstr, &end_ptr, 10);
- if (oid == 0 && (errno == ERANGE || errno == EINVAL)) {
- RETURN_FALSE;
- }
- dbh = Z_PDO_DBH_P(getThis());
- PDO_CONSTRUCT_CHECK;
- PDO_DBH_CLEAR_ERR();
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- if (1 == lo_unlink(H->server, oid)) {
- RETURN_TRUE;
- }
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- /* }}} */
- /* {{{ proto mixed PDO::pgsqlGetNotify([ int $result_type = PDO::FETCH_USE_DEFAULT] [, int $ms_timeout = 0 ]])
- Get asyncronous notification */
- static PHP_METHOD(PDO, pgsqlGetNotify)
- {
- pdo_dbh_t *dbh;
- pdo_pgsql_db_handle *H;
- zend_long result_type = PDO_FETCH_USE_DEFAULT;
- zend_long ms_timeout = 0;
- PGnotify *pgsql_notify;
- if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "|ll",
- &result_type, &ms_timeout)) {
- RETURN_FALSE;
- }
- dbh = Z_PDO_DBH_P(getThis());
- PDO_CONSTRUCT_CHECK;
- if (result_type == PDO_FETCH_USE_DEFAULT) {
- result_type = dbh->default_fetch_type;
- }
- if (result_type != PDO_FETCH_BOTH && result_type != PDO_FETCH_ASSOC && result_type != PDO_FETCH_NUM) {
- php_error_docref(NULL, E_WARNING, "Invalid result type");
- RETURN_FALSE;
- }
- if (ms_timeout < 0) {
- php_error_docref(NULL, E_WARNING, "Invalid timeout");
- RETURN_FALSE;
- #if ZEND_ENABLE_ZVAL_LONG64
- } else if (ms_timeout > INT_MAX) {
- php_error_docref(NULL, E_WARNING, "timeout was shrunk to %d", INT_MAX);
- ms_timeout = INT_MAX;
- #endif
- }
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- if (!PQconsumeInput(H->server)) {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- pgsql_notify = PQnotifies(H->server);
- if (ms_timeout && !pgsql_notify) {
- php_pollfd_for_ms(PQsocket(H->server), PHP_POLLREADABLE, (int)ms_timeout);
- if (!PQconsumeInput(H->server)) {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
- PDO_HANDLE_DBH_ERR();
- RETURN_FALSE;
- }
- pgsql_notify = PQnotifies(H->server);
- }
- if (!pgsql_notify) {
- RETURN_FALSE;
- }
- array_init(return_value);
- if (result_type == PDO_FETCH_NUM || result_type == PDO_FETCH_BOTH) {
- add_index_string(return_value, 0, pgsql_notify->relname);
- add_index_long(return_value, 1, pgsql_notify->be_pid);
- if (pgsql_notify->extra && pgsql_notify->extra[0]) {
- add_index_string(return_value, 2, pgsql_notify->extra);
- }
- }
- if (result_type == PDO_FETCH_ASSOC || result_type == PDO_FETCH_BOTH) {
- add_assoc_string(return_value, "message", pgsql_notify->relname);
- add_assoc_long(return_value, "pid", pgsql_notify->be_pid);
- if (pgsql_notify->extra && pgsql_notify->extra[0]) {
- add_assoc_string(return_value, "payload", pgsql_notify->extra);
- }
- }
- PQfreemem(pgsql_notify);
- }
- /* }}} */
- /* {{{ proto int PDO::pgsqlGetPid()
- Get backend(server) pid */
- static PHP_METHOD(PDO, pgsqlGetPid)
- {
- pdo_dbh_t *dbh;
- pdo_pgsql_db_handle *H;
- dbh = Z_PDO_DBH_P(getThis());
- PDO_CONSTRUCT_CHECK;
- H = (pdo_pgsql_db_handle *)dbh->driver_data;
- RETURN_LONG(PQbackendPID(H->server));
- }
- /* }}} */
- static const zend_function_entry dbh_methods[] = {
- PHP_ME(PDO, pgsqlLOBCreate, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(PDO, pgsqlLOBOpen, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(PDO, pgsqlLOBUnlink, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(PDO, pgsqlCopyFromArray, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(PDO, pgsqlCopyFromFile, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(PDO, pgsqlCopyToArray, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(PDO, pgsqlCopyToFile, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(PDO, pgsqlGetNotify, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(PDO, pgsqlGetPid, NULL, ZEND_ACC_PUBLIC)
- PHP_FE_END
- };
- static const zend_function_entry *pdo_pgsql_get_driver_methods(pdo_dbh_t *dbh, int kind)
- {
- switch (kind) {
- case PDO_DBH_DRIVER_METHOD_KIND_DBH:
- return dbh_methods;
- default:
- return NULL;
- }
- }
- static int pdo_pgsql_set_attr(pdo_dbh_t *dbh, zend_long attr, zval *val)
- {
- zend_bool bval = zval_get_long(val)? 1 : 0;
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
- switch (attr) {
- case PDO_ATTR_EMULATE_PREPARES:
- H->emulate_prepares = bval;
- return 1;
- case PDO_PGSQL_ATTR_DISABLE_PREPARES:
- H->disable_prepares = bval;
- return 1;
- default:
- return 0;
- }
- }
- static const struct pdo_dbh_methods pgsql_methods = {
- pgsql_handle_closer,
- pgsql_handle_preparer,
- pgsql_handle_doer,
- pgsql_handle_quoter,
- pgsql_handle_begin,
- pgsql_handle_commit,
- pgsql_handle_rollback,
- pdo_pgsql_set_attr,
- pdo_pgsql_last_insert_id,
- pdo_pgsql_fetch_error_func,
- pdo_pgsql_get_attribute,
- pdo_pgsql_check_liveness, /* check_liveness */
- pdo_pgsql_get_driver_methods, /* get_driver_methods */
- NULL,
- pgsql_handle_in_transaction,
- };
- static int pdo_pgsql_handle_factory(pdo_dbh_t *dbh, zval *driver_options) /* {{{ */
- {
- pdo_pgsql_db_handle *H;
- int ret = 0;
- char *conn_str, *p, *e;
- zend_string *tmp_user, *tmp_pass;
- zend_long connect_timeout = 30;
- H = pecalloc(1, sizeof(pdo_pgsql_db_handle), dbh->is_persistent);
- dbh->driver_data = H;
- dbh->skip_param_evt =
- 1 << PDO_PARAM_EVT_EXEC_POST |
- 1 << PDO_PARAM_EVT_FETCH_PRE |
- 1 << PDO_PARAM_EVT_FETCH_POST;
- H->einfo.errcode = 0;
- H->einfo.errmsg = NULL;
- /* PostgreSQL wants params in the connect string to be separated by spaces,
- * if the PDO standard semicolons are used, we convert them to spaces
- */
- e = (char *) dbh->data_source + strlen(dbh->data_source);
- p = (char *) dbh->data_source;
- while ((p = memchr(p, ';', (e - p)))) {
- *p = ' ';
- }
- if (driver_options) {
- connect_timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, 30);
- }
- /* escape username and password, if provided */
- tmp_user = _pdo_pgsql_escape_credentials(dbh->username);
- tmp_pass = _pdo_pgsql_escape_credentials(dbh->password);
- /* support both full connection string & connection string + login and/or password */
- if (tmp_user && tmp_pass) {
- spprintf(&conn_str, 0, "%s user='%s' password='%s' connect_timeout=" ZEND_LONG_FMT, (char *) dbh->data_source, ZSTR_VAL(tmp_user), ZSTR_VAL(tmp_pass), connect_timeout);
- } else if (tmp_user) {
- spprintf(&conn_str, 0, "%s user='%s' connect_timeout=" ZEND_LONG_FMT, (char *) dbh->data_source, ZSTR_VAL(tmp_user), connect_timeout);
- } else if (tmp_pass) {
- spprintf(&conn_str, 0, "%s password='%s' connect_timeout=" ZEND_LONG_FMT, (char *) dbh->data_source, ZSTR_VAL(tmp_pass), connect_timeout);
- } else {
- spprintf(&conn_str, 0, "%s connect_timeout=" ZEND_LONG_FMT, (char *) dbh->data_source, connect_timeout);
- }
- H->server = PQconnectdb(conn_str);
- if (tmp_user) {
- zend_string_release_ex(tmp_user, 0);
- }
- if (tmp_pass) {
- zend_string_release_ex(tmp_pass, 0);
- }
- efree(conn_str);
- if (PQstatus(H->server) != CONNECTION_OK) {
- pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, PHP_PDO_PGSQL_CONNECTION_FAILURE_SQLSTATE);
- goto cleanup;
- }
- PQsetNoticeProcessor(H->server, (void(*)(void*,const char*))_pdo_pgsql_notice, (void *)&dbh);
- H->attached = 1;
- H->pgoid = -1;
- dbh->methods = &pgsql_methods;
- dbh->alloc_own_columns = 1;
- dbh->max_escaped_char_length = 2;
- ret = 1;
- cleanup:
- dbh->methods = &pgsql_methods;
- if (!ret) {
- pgsql_handle_closer(dbh);
- }
- return ret;
- }
- /* }}} */
- const pdo_driver_t pdo_pgsql_driver = {
- PDO_DRIVER_HEADER(pgsql),
- pdo_pgsql_handle_factory
- };
- /*
- * 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
- */
|