pgsql_statement.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Edin Kadribasic <edink@emini.dk> |
  16. | Ilia Alshanestsky <ilia@prohost.org> |
  17. | Wez Furlong <wez@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. /* $Id$ */
  21. #ifdef HAVE_CONFIG_H
  22. #include "config.h"
  23. #endif
  24. #include "php.h"
  25. #include "php_ini.h"
  26. #include "ext/standard/info.h"
  27. #include "pdo/php_pdo.h"
  28. #include "pdo/php_pdo_driver.h"
  29. #include "php_pdo_pgsql.h"
  30. #include "php_pdo_pgsql_int.h"
  31. #if HAVE_NETINET_IN_H
  32. #include <netinet/in.h>
  33. #endif
  34. /* from postgresql/src/include/catalog/pg_type.h */
  35. #define BOOLOID 16
  36. #define BYTEAOID 17
  37. #define INT8OID 20
  38. #define INT2OID 21
  39. #define INT4OID 23
  40. #define TEXTOID 25
  41. #define OIDOID 26
  42. static int pgsql_stmt_dtor(pdo_stmt_t *stmt TSRMLS_DC)
  43. {
  44. pdo_pgsql_stmt *S = (pdo_pgsql_stmt*)stmt->driver_data;
  45. if (S->result) {
  46. /* free the resource */
  47. PQclear(S->result);
  48. S->result = NULL;
  49. }
  50. if (S->stmt_name) {
  51. pdo_pgsql_db_handle *H = S->H;
  52. char *q = NULL;
  53. PGresult *res;
  54. if (S->is_prepared) {
  55. spprintf(&q, 0, "DEALLOCATE %s", S->stmt_name);
  56. res = PQexec(H->server, q);
  57. efree(q);
  58. if (res) {
  59. PQclear(res);
  60. }
  61. }
  62. efree(S->stmt_name);
  63. S->stmt_name = NULL;
  64. }
  65. if (S->param_lengths) {
  66. efree(S->param_lengths);
  67. S->param_lengths = NULL;
  68. }
  69. if (S->param_values) {
  70. efree(S->param_values);
  71. S->param_values = NULL;
  72. }
  73. if (S->param_formats) {
  74. efree(S->param_formats);
  75. S->param_formats = NULL;
  76. }
  77. if (S->param_types) {
  78. efree(S->param_types);
  79. S->param_types = NULL;
  80. }
  81. if (S->query) {
  82. efree(S->query);
  83. S->query = NULL;
  84. }
  85. if (S->cursor_name) {
  86. pdo_pgsql_db_handle *H = S->H;
  87. char *q = NULL;
  88. PGresult *res;
  89. spprintf(&q, 0, "CLOSE %s", S->cursor_name);
  90. res = PQexec(H->server, q);
  91. efree(q);
  92. if (res) PQclear(res);
  93. efree(S->cursor_name);
  94. S->cursor_name = NULL;
  95. }
  96. if(S->cols) {
  97. efree(S->cols);
  98. S->cols = NULL;
  99. }
  100. efree(S);
  101. stmt->driver_data = NULL;
  102. return 1;
  103. }
  104. static int pgsql_stmt_execute(pdo_stmt_t *stmt TSRMLS_DC)
  105. {
  106. pdo_pgsql_stmt *S = (pdo_pgsql_stmt*)stmt->driver_data;
  107. pdo_pgsql_db_handle *H = S->H;
  108. ExecStatusType status;
  109. /* ensure that we free any previous unfetched results */
  110. if(S->result) {
  111. PQclear(S->result);
  112. S->result = NULL;
  113. }
  114. S->current_row = 0;
  115. if (S->cursor_name) {
  116. char *q = NULL;
  117. if (S->is_prepared) {
  118. spprintf(&q, 0, "CLOSE %s", S->cursor_name);
  119. S->result = PQexec(H->server, q);
  120. efree(q);
  121. }
  122. spprintf(&q, 0, "DECLARE %s SCROLL CURSOR WITH HOLD FOR %s", S->cursor_name, stmt->active_query_string);
  123. S->result = PQexec(H->server, q);
  124. efree(q);
  125. /* check if declare failed */
  126. status = PQresultStatus(S->result);
  127. if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK) {
  128. pdo_pgsql_error_stmt(stmt, status, pdo_pgsql_sqlstate(S->result));
  129. return 0;
  130. }
  131. /* the cursor was declared correctly */
  132. S->is_prepared = 1;
  133. /* fetch to be able to get the number of tuples later, but don't advance the cursor pointer */
  134. spprintf(&q, 0, "FETCH FORWARD 0 FROM %s", S->cursor_name);
  135. S->result = PQexec(H->server, q);
  136. efree(q);
  137. } else if (S->stmt_name) {
  138. /* using a prepared statement */
  139. if (!S->is_prepared) {
  140. stmt_retry:
  141. /* we deferred the prepare until now, because we didn't
  142. * know anything about the parameter types; now we do */
  143. S->result = PQprepare(H->server, S->stmt_name, S->query,
  144. stmt->bound_params ? zend_hash_num_elements(stmt->bound_params) : 0,
  145. S->param_types);
  146. status = PQresultStatus(S->result);
  147. switch (status) {
  148. case PGRES_COMMAND_OK:
  149. case PGRES_TUPLES_OK:
  150. /* it worked */
  151. S->is_prepared = 1;
  152. PQclear(S->result);
  153. break;
  154. default: {
  155. char *sqlstate = pdo_pgsql_sqlstate(S->result);
  156. /* 42P05 means that the prepared statement already existed. this can happen if you use
  157. * a connection pooling software line pgpool which doesn't close the db-connection once
  158. * php disconnects. if php dies (no chance to run RSHUTDOWN) during execution it has no
  159. * chance to DEALLOCATE the prepared statements it has created. so, if we hit a 42P05 we
  160. * deallocate it and retry ONCE (thies 2005.12.15)
  161. */
  162. if (sqlstate && !strcmp(sqlstate, "42P05")) {
  163. char buf[100]; /* stmt_name == "pdo_crsr_%08x" */
  164. PGresult *res;
  165. snprintf(buf, sizeof(buf), "DEALLOCATE %s", S->stmt_name);
  166. res = PQexec(H->server, buf);
  167. if (res) {
  168. PQclear(res);
  169. }
  170. goto stmt_retry;
  171. } else {
  172. pdo_pgsql_error_stmt(stmt, status, sqlstate);
  173. return 0;
  174. }
  175. }
  176. }
  177. }
  178. S->result = PQexecPrepared(H->server, S->stmt_name,
  179. stmt->bound_params ?
  180. zend_hash_num_elements(stmt->bound_params) :
  181. 0,
  182. (const char**)S->param_values,
  183. S->param_lengths,
  184. S->param_formats,
  185. 0);
  186. } else if (stmt->supports_placeholders == PDO_PLACEHOLDER_NAMED) {
  187. /* execute query with parameters */
  188. S->result = PQexecParams(H->server, S->query,
  189. stmt->bound_params ? zend_hash_num_elements(stmt->bound_params) : 0,
  190. S->param_types,
  191. (const char**)S->param_values,
  192. S->param_lengths,
  193. S->param_formats,
  194. 0);
  195. } else {
  196. /* execute plain query (with embedded parameters) */
  197. S->result = PQexec(H->server, stmt->active_query_string);
  198. }
  199. status = PQresultStatus(S->result);
  200. if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK) {
  201. pdo_pgsql_error_stmt(stmt, status, pdo_pgsql_sqlstate(S->result));
  202. return 0;
  203. }
  204. if (!stmt->executed && (!stmt->column_count || S->cols == NULL)) {
  205. stmt->column_count = (int) PQnfields(S->result);
  206. S->cols = ecalloc(stmt->column_count, sizeof(pdo_pgsql_column));
  207. }
  208. if (status == PGRES_COMMAND_OK) {
  209. stmt->row_count = (long)atoi(PQcmdTuples(S->result));
  210. H->pgoid = PQoidValue(S->result);
  211. } else {
  212. stmt->row_count = (long)PQntuples(S->result);
  213. }
  214. return 1;
  215. }
  216. static int pgsql_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param,
  217. enum pdo_param_event event_type TSRMLS_DC)
  218. {
  219. pdo_pgsql_stmt *S = (pdo_pgsql_stmt*)stmt->driver_data;
  220. if (stmt->supports_placeholders == PDO_PLACEHOLDER_NAMED && param->is_param) {
  221. switch (event_type) {
  222. case PDO_PARAM_EVT_FREE:
  223. if (param->driver_data) {
  224. efree(param->driver_data);
  225. }
  226. break;
  227. case PDO_PARAM_EVT_NORMALIZE:
  228. /* decode name from $1, $2 into 0, 1 etc. */
  229. if (param->name) {
  230. if (param->name[0] == '$') {
  231. param->paramno = atoi(param->name + 1);
  232. } else {
  233. /* resolve parameter name to rewritten name */
  234. char *nameptr;
  235. if (stmt->bound_param_map && SUCCESS == zend_hash_find(stmt->bound_param_map,
  236. param->name, param->namelen + 1, (void**)&nameptr)) {
  237. param->paramno = atoi(nameptr + 1) - 1;
  238. } else {
  239. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", param->name TSRMLS_CC);
  240. return 0;
  241. }
  242. }
  243. }
  244. break;
  245. case PDO_PARAM_EVT_ALLOC:
  246. case PDO_PARAM_EVT_EXEC_POST:
  247. case PDO_PARAM_EVT_FETCH_PRE:
  248. case PDO_PARAM_EVT_FETCH_POST:
  249. /* work is handled by EVT_NORMALIZE */
  250. return 1;
  251. case PDO_PARAM_EVT_EXEC_PRE:
  252. if (!stmt->bound_param_map) {
  253. return 1;
  254. }
  255. if (!S->param_values) {
  256. S->param_values = ecalloc(
  257. zend_hash_num_elements(stmt->bound_param_map),
  258. sizeof(char*));
  259. S->param_lengths = ecalloc(
  260. zend_hash_num_elements(stmt->bound_param_map),
  261. sizeof(int));
  262. S->param_formats = ecalloc(
  263. zend_hash_num_elements(stmt->bound_param_map),
  264. sizeof(int));
  265. S->param_types = ecalloc(
  266. zend_hash_num_elements(stmt->bound_param_map),
  267. sizeof(Oid));
  268. }
  269. if (param->paramno >= 0) {
  270. if (param->paramno >= zend_hash_num_elements(stmt->bound_params)) {
  271. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "parameter was not defined" TSRMLS_CC);
  272. return 0;
  273. }
  274. if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_LOB &&
  275. Z_TYPE_P(param->parameter) == IS_RESOURCE) {
  276. php_stream *stm;
  277. php_stream_from_zval_no_verify(stm, &param->parameter);
  278. if (stm) {
  279. if (php_stream_is(stm, &pdo_pgsql_lob_stream_ops)) {
  280. struct pdo_pgsql_lob_self *self = (struct pdo_pgsql_lob_self*)stm->abstract;
  281. pdo_pgsql_bound_param *P = param->driver_data;
  282. if (P == NULL) {
  283. P = ecalloc(1, sizeof(*P));
  284. param->driver_data = P;
  285. }
  286. P->oid = htonl(self->oid);
  287. S->param_values[param->paramno] = (char*)&P->oid;
  288. S->param_lengths[param->paramno] = sizeof(P->oid);
  289. S->param_formats[param->paramno] = 1;
  290. S->param_types[param->paramno] = OIDOID;
  291. return 1;
  292. } else {
  293. int len;
  294. SEPARATE_ZVAL_IF_NOT_REF(&param->parameter);
  295. Z_TYPE_P(param->parameter) = IS_STRING;
  296. if ((len = php_stream_copy_to_mem(stm, &Z_STRVAL_P(param->parameter), PHP_STREAM_COPY_ALL, 0)) > 0) {
  297. Z_STRLEN_P(param->parameter) = len;
  298. } else {
  299. ZVAL_EMPTY_STRING(param->parameter);
  300. }
  301. }
  302. } else {
  303. /* expected a stream resource */
  304. pdo_pgsql_error_stmt(stmt, PGRES_FATAL_ERROR, "HY105");
  305. return 0;
  306. }
  307. }
  308. if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_NULL ||
  309. Z_TYPE_P(param->parameter) == IS_NULL) {
  310. S->param_values[param->paramno] = NULL;
  311. S->param_lengths[param->paramno] = 0;
  312. } else if (Z_TYPE_P(param->parameter) == IS_BOOL) {
  313. S->param_values[param->paramno] = Z_BVAL_P(param->parameter) ? "t" : "f";
  314. S->param_lengths[param->paramno] = 1;
  315. S->param_formats[param->paramno] = 0;
  316. } else {
  317. SEPARATE_ZVAL_IF_NOT_REF(&param->parameter);
  318. convert_to_string(param->parameter);
  319. S->param_values[param->paramno] = Z_STRVAL_P(param->parameter);
  320. S->param_lengths[param->paramno] = Z_STRLEN_P(param->parameter);
  321. S->param_formats[param->paramno] = 0;
  322. }
  323. if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_LOB) {
  324. S->param_types[param->paramno] = 0;
  325. S->param_formats[param->paramno] = 1;
  326. } else {
  327. S->param_types[param->paramno] = 0;
  328. }
  329. }
  330. break;
  331. }
  332. } else if (param->is_param) {
  333. /* We need to manually convert to a pg native boolean value */
  334. if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_BOOL &&
  335. ((param->param_type & PDO_PARAM_INPUT_OUTPUT) != PDO_PARAM_INPUT_OUTPUT)) {
  336. SEPARATE_ZVAL(&param->parameter);
  337. param->param_type = PDO_PARAM_STR;
  338. convert_to_boolean(param->parameter);
  339. ZVAL_STRINGL(param->parameter, Z_BVAL_P(param->parameter) ? "t" : "f", 1, 1);
  340. }
  341. }
  342. return 1;
  343. }
  344. static int pgsql_stmt_fetch(pdo_stmt_t *stmt,
  345. enum pdo_fetch_orientation ori, long offset TSRMLS_DC)
  346. {
  347. pdo_pgsql_stmt *S = (pdo_pgsql_stmt*)stmt->driver_data;
  348. if (S->cursor_name) {
  349. char *ori_str = NULL;
  350. char *q = NULL;
  351. ExecStatusType status;
  352. switch (ori) {
  353. case PDO_FETCH_ORI_NEXT: spprintf(&ori_str, 0, "NEXT"); break;
  354. case PDO_FETCH_ORI_PRIOR: spprintf(&ori_str, 0, "BACKWARD"); break;
  355. case PDO_FETCH_ORI_FIRST: spprintf(&ori_str, 0, "FIRST"); break;
  356. case PDO_FETCH_ORI_LAST: spprintf(&ori_str, 0, "LAST"); break;
  357. case PDO_FETCH_ORI_ABS: spprintf(&ori_str, 0, "ABSOLUTE %ld", offset); break;
  358. case PDO_FETCH_ORI_REL: spprintf(&ori_str, 0, "RELATIVE %ld", offset); break;
  359. default:
  360. return 0;
  361. }
  362. spprintf(&q, 0, "FETCH %s FROM %s", ori_str, S->cursor_name);
  363. efree(ori_str);
  364. S->result = PQexec(S->H->server, q);
  365. efree(q);
  366. status = PQresultStatus(S->result);
  367. if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK) {
  368. pdo_pgsql_error_stmt(stmt, status, pdo_pgsql_sqlstate(S->result));
  369. return 0;
  370. }
  371. if (PQntuples(S->result)) {
  372. S->current_row = 1;
  373. return 1;
  374. } else {
  375. return 0;
  376. }
  377. } else {
  378. if (S->current_row < stmt->row_count) {
  379. S->current_row++;
  380. return 1;
  381. } else {
  382. return 0;
  383. }
  384. }
  385. }
  386. static int pgsql_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC)
  387. {
  388. pdo_pgsql_stmt *S = (pdo_pgsql_stmt*)stmt->driver_data;
  389. struct pdo_column_data *cols = stmt->columns;
  390. struct pdo_bound_param_data *param;
  391. if (!S->result) {
  392. return 0;
  393. }
  394. cols[colno].name = estrdup(PQfname(S->result, colno));
  395. cols[colno].namelen = strlen(cols[colno].name);
  396. cols[colno].maxlen = PQfsize(S->result, colno);
  397. cols[colno].precision = PQfmod(S->result, colno);
  398. S->cols[colno].pgsql_type = PQftype(S->result, colno);
  399. switch(S->cols[colno].pgsql_type) {
  400. case BOOLOID:
  401. cols[colno].param_type = PDO_PARAM_BOOL;
  402. break;
  403. case OIDOID:
  404. /* did the user bind the column as a LOB ? */
  405. if (stmt->bound_columns && (
  406. SUCCESS == zend_hash_index_find(stmt->bound_columns,
  407. colno, (void**)&param) ||
  408. SUCCESS == zend_hash_find(stmt->bound_columns,
  409. cols[colno].name, cols[colno].namelen,
  410. (void**)&param))) {
  411. if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_LOB) {
  412. cols[colno].param_type = PDO_PARAM_LOB;
  413. break;
  414. }
  415. }
  416. cols[colno].param_type = PDO_PARAM_INT;
  417. break;
  418. case INT2OID:
  419. case INT4OID:
  420. cols[colno].param_type = PDO_PARAM_INT;
  421. break;
  422. case INT8OID:
  423. if (sizeof(long)>=8) {
  424. cols[colno].param_type = PDO_PARAM_INT;
  425. } else {
  426. cols[colno].param_type = PDO_PARAM_STR;
  427. }
  428. break;
  429. case BYTEAOID:
  430. cols[colno].param_type = PDO_PARAM_LOB;
  431. break;
  432. default:
  433. cols[colno].param_type = PDO_PARAM_STR;
  434. }
  435. return 1;
  436. }
  437. static int pgsql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC)
  438. {
  439. pdo_pgsql_stmt *S = (pdo_pgsql_stmt*)stmt->driver_data;
  440. struct pdo_column_data *cols = stmt->columns;
  441. size_t tmp_len;
  442. if (!S->result) {
  443. return 0;
  444. }
  445. /* We have already increased count by 1 in pgsql_stmt_fetch() */
  446. if (PQgetisnull(S->result, S->current_row - 1, colno)) { /* Check if we got NULL */
  447. *ptr = NULL;
  448. *len = 0;
  449. } else {
  450. *ptr = PQgetvalue(S->result, S->current_row - 1, colno);
  451. *len = PQgetlength(S->result, S->current_row - 1, colno);
  452. switch(cols[colno].param_type) {
  453. case PDO_PARAM_INT:
  454. S->cols[colno].intval = atol(*ptr);
  455. *ptr = (char *) &(S->cols[colno].intval);
  456. *len = sizeof(long);
  457. break;
  458. case PDO_PARAM_BOOL:
  459. S->cols[colno].boolval = **ptr == 't' ? 1: 0;
  460. *ptr = (char *) &(S->cols[colno].boolval);
  461. *len = sizeof(zend_bool);
  462. break;
  463. case PDO_PARAM_LOB:
  464. if (S->cols[colno].pgsql_type == OIDOID) {
  465. /* ooo, a real large object */
  466. char *end_ptr;
  467. Oid oid = (Oid)strtoul(*ptr, &end_ptr, 10);
  468. int loid = lo_open(S->H->server, oid, INV_READ);
  469. if (loid >= 0) {
  470. *ptr = (char*)pdo_pgsql_create_lob_stream(stmt->dbh, loid, oid TSRMLS_CC);
  471. *len = 0;
  472. return *ptr ? 1 : 0;
  473. }
  474. *ptr = NULL;
  475. *len = 0;
  476. return 0;
  477. } else {
  478. char *tmp_ptr = (char *)PQunescapeBytea((unsigned char *)*ptr, &tmp_len);
  479. if (!tmp_ptr) {
  480. /* PQunescapeBytea returned an error */
  481. *len = 0;
  482. return 0;
  483. }
  484. if (!tmp_len) {
  485. /* Empty string, return as empty stream */
  486. *ptr = (char *)php_stream_memory_open(TEMP_STREAM_READONLY, "", 0);
  487. PQfreemem(tmp_ptr);
  488. *len = 0;
  489. } else {
  490. *ptr = estrndup(tmp_ptr, tmp_len);
  491. PQfreemem(tmp_ptr);
  492. *len = tmp_len;
  493. *caller_frees = 1;
  494. }
  495. }
  496. break;
  497. case PDO_PARAM_NULL:
  498. case PDO_PARAM_STR:
  499. case PDO_PARAM_STMT:
  500. case PDO_PARAM_INPUT_OUTPUT:
  501. case PDO_PARAM_ZVAL:
  502. default:
  503. break;
  504. }
  505. }
  506. return 1;
  507. }
  508. static int pgsql_stmt_get_column_meta(pdo_stmt_t *stmt, long colno, zval *return_value TSRMLS_DC)
  509. {
  510. pdo_pgsql_stmt *S = (pdo_pgsql_stmt*)stmt->driver_data;
  511. PGresult *res;
  512. char *q=NULL;
  513. ExecStatusType status;
  514. if (!S->result) {
  515. return FAILURE;
  516. }
  517. if (colno >= stmt->column_count) {
  518. return FAILURE;
  519. }
  520. array_init(return_value);
  521. add_assoc_long(return_value, "pgsql:oid", S->cols[colno].pgsql_type);
  522. /* Fetch metadata from Postgres system catalogue */
  523. spprintf(&q, 0, "SELECT TYPNAME FROM PG_TYPE WHERE OID=%u", S->cols[colno].pgsql_type);
  524. res = PQexec(S->H->server, q);
  525. efree(q);
  526. status = PQresultStatus(res);
  527. if (status != PGRES_TUPLES_OK) {
  528. /* Failed to get system catalogue, but return success
  529. * with the data we have collected so far
  530. */
  531. goto done;
  532. }
  533. /* We want exactly one row returned */
  534. if (1 != PQntuples(res)) {
  535. goto done;
  536. }
  537. add_assoc_string(return_value, "native_type", PQgetvalue(res, 0, 0), 1);
  538. done:
  539. PQclear(res);
  540. return 1;
  541. }
  542. static int pdo_pgsql_stmt_cursor_closer(pdo_stmt_t *stmt TSRMLS_DC)
  543. {
  544. pdo_pgsql_stmt *S = (pdo_pgsql_stmt*)stmt->driver_data;
  545. if (S->cols != NULL){
  546. efree(S->cols);
  547. S->cols = NULL;
  548. }
  549. return 1;
  550. }
  551. struct pdo_stmt_methods pgsql_stmt_methods = {
  552. pgsql_stmt_dtor,
  553. pgsql_stmt_execute,
  554. pgsql_stmt_fetch,
  555. pgsql_stmt_describe,
  556. pgsql_stmt_get_col,
  557. pgsql_stmt_param_hook,
  558. NULL, /* set_attr */
  559. NULL, /* get_attr */
  560. pgsql_stmt_get_column_meta,
  561. NULL, /* next_rowset */
  562. pdo_pgsql_stmt_cursor_closer
  563. };
  564. /*
  565. * Local variables:
  566. * tab-width: 4
  567. * c-basic-offset: 4
  568. * End:
  569. * vim600: noet sw=4 ts=4 fdm=marker
  570. * vim<600: noet sw=4 ts=4
  571. */