mysql_statement.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  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. | Author: George Schlossnagle <george@omniti.com> |
  16. | Wez Furlong <wez@php.net> |
  17. | Johannes Schlueter <johannes@mysql.com> |
  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_mysql.h"
  30. #include "php_pdo_mysql_int.h"
  31. #ifdef PDO_USE_MYSQLND
  32. # define pdo_mysql_stmt_execute_prepared(stmt) pdo_mysql_stmt_execute_prepared_mysqlnd(stmt TSRMLS_CC)
  33. # define pdo_free_bound_result(res) zval_dtor(res.zv)
  34. # define pdo_mysql_stmt_close(stmt) mysqlnd_stmt_close(stmt, 0)
  35. #else
  36. # define pdo_mysql_stmt_execute_prepared(stmt) pdo_mysql_stmt_execute_prepared_libmysql(stmt TSRMLS_CC)
  37. # define pdo_free_bound_result(res) efree(res.buffer)
  38. # define pdo_mysql_stmt_close(stmt) mysql_stmt_close(stmt)
  39. #endif
  40. static int pdo_mysql_stmt_dtor(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
  41. {
  42. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  43. PDO_DBG_ENTER("pdo_mysql_stmt_dtor");
  44. PDO_DBG_INF_FMT("stmt=%p", S->stmt);
  45. if (S->result) {
  46. /* free the resource */
  47. mysql_free_result(S->result);
  48. S->result = NULL;
  49. }
  50. if (S->einfo.errmsg) {
  51. pefree(S->einfo.errmsg, stmt->dbh->is_persistent);
  52. S->einfo.errmsg = NULL;
  53. }
  54. if (S->stmt) {
  55. pdo_mysql_stmt_close(S->stmt);
  56. S->stmt = NULL;
  57. }
  58. #ifndef PDO_USE_MYSQLND
  59. if (S->params) {
  60. efree(S->params);
  61. }
  62. if (S->in_null) {
  63. efree(S->in_null);
  64. }
  65. if (S->in_length) {
  66. efree(S->in_length);
  67. }
  68. if (S->bound_result)
  69. {
  70. int i;
  71. for (i = 0; i < stmt->column_count; i++) {
  72. pdo_free_bound_result(S->bound_result[i]);
  73. }
  74. efree(S->bound_result);
  75. efree(S->out_null);
  76. efree(S->out_length);
  77. }
  78. #endif
  79. if (S->H->server) {
  80. while (mysql_more_results(S->H->server)) {
  81. MYSQL_RES *res;
  82. if (mysql_next_result(S->H->server) != 0) {
  83. break;
  84. }
  85. res = mysql_store_result(S->H->server);
  86. if (res) {
  87. mysql_free_result(res);
  88. }
  89. }
  90. }
  91. #if PDO_USE_MYSQLND
  92. if (!S->stmt && S->current_data) {
  93. mnd_free(S->current_data);
  94. }
  95. #endif /* PDO_USE_MYSQLND */
  96. efree(S);
  97. PDO_DBG_RETURN(1);
  98. }
  99. /* }}} */
  100. static void pdo_mysql_stmt_set_row_count(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
  101. {
  102. long row_count;
  103. pdo_mysql_stmt *S = stmt->driver_data;
  104. row_count = (long) mysql_stmt_affected_rows(S->stmt);
  105. if (row_count != (long)-1) {
  106. stmt->row_count = row_count;
  107. }
  108. }
  109. /* }}} */
  110. static int pdo_mysql_fill_stmt_from_result(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
  111. {
  112. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  113. pdo_mysql_db_handle *H = S->H;
  114. my_ulonglong row_count;
  115. PDO_DBG_ENTER("pdo_mysql_fill_stmt_from_result");
  116. row_count = mysql_affected_rows(H->server);
  117. if (row_count == (my_ulonglong)-1) {
  118. /* we either have a query that returned a result set or an error occurred
  119. lets see if we have access to a result set */
  120. if (!H->buffered) {
  121. S->result = mysql_use_result(H->server);
  122. } else {
  123. S->result = mysql_store_result(H->server);
  124. }
  125. if (NULL == S->result) {
  126. pdo_mysql_error_stmt(stmt);
  127. PDO_DBG_RETURN(0);
  128. }
  129. stmt->row_count = (long) mysql_num_rows(S->result);
  130. stmt->column_count = (int) mysql_num_fields(S->result);
  131. S->fields = mysql_fetch_fields(S->result);
  132. } else {
  133. /* this was a DML or DDL query (INSERT, UPDATE, DELETE, ... */
  134. stmt->row_count = (long) row_count;
  135. }
  136. PDO_DBG_RETURN(1);
  137. }
  138. /* }}} */
  139. #ifndef PDO_USE_MYSQLND
  140. static int pdo_mysql_stmt_execute_prepared_libmysql(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
  141. {
  142. pdo_mysql_stmt *S = stmt->driver_data;
  143. pdo_mysql_db_handle *H = S->H;
  144. PDO_DBG_ENTER("pdo_mysql_stmt_execute_prepared_libmysql");
  145. /* (re)bind the parameters */
  146. if (mysql_stmt_bind_param(S->stmt, S->params) || mysql_stmt_execute(S->stmt)) {
  147. if (S->params) {
  148. memset(S->params, 0, S->num_params * sizeof(MYSQL_BIND));
  149. }
  150. pdo_mysql_error_stmt(stmt);
  151. if (mysql_stmt_errno(S->stmt) == 2057) {
  152. /* CR_NEW_STMT_METADATA makes the statement unusable */
  153. S->stmt = NULL;
  154. }
  155. PDO_DBG_RETURN(0);
  156. }
  157. if (!S->result) {
  158. int i;
  159. /* figure out the result set format, if any */
  160. S->result = mysql_stmt_result_metadata(S->stmt);
  161. if (S->result) {
  162. int calc_max_length = H->buffered && S->max_length == 1;
  163. S->fields = mysql_fetch_fields(S->result);
  164. if (S->bound_result) {
  165. int i;
  166. for (i = 0; i < stmt->column_count; i++) {
  167. efree(S->bound_result[i].buffer);
  168. }
  169. efree(S->bound_result);
  170. efree(S->out_null);
  171. efree(S->out_length);
  172. }
  173. stmt->column_count = (int)mysql_num_fields(S->result);
  174. S->bound_result = ecalloc(stmt->column_count, sizeof(MYSQL_BIND));
  175. S->out_null = ecalloc(stmt->column_count, sizeof(my_bool));
  176. S->out_length = ecalloc(stmt->column_count, sizeof(unsigned long));
  177. /* summon memory to hold the row */
  178. for (i = 0; i < stmt->column_count; i++) {
  179. if (calc_max_length && S->fields[i].type == FIELD_TYPE_BLOB) {
  180. my_bool on = 1;
  181. mysql_stmt_attr_set(S->stmt, STMT_ATTR_UPDATE_MAX_LENGTH, &on);
  182. calc_max_length = 0;
  183. }
  184. switch (S->fields[i].type) {
  185. case FIELD_TYPE_INT24:
  186. S->bound_result[i].buffer_length = MAX_MEDIUMINT_WIDTH + 1;
  187. break;
  188. case FIELD_TYPE_LONG:
  189. S->bound_result[i].buffer_length = MAX_INT_WIDTH + 1;
  190. break;
  191. case FIELD_TYPE_LONGLONG:
  192. S->bound_result[i].buffer_length = MAX_BIGINT_WIDTH + 1;
  193. break;
  194. case FIELD_TYPE_TINY:
  195. S->bound_result[i].buffer_length = MAX_TINYINT_WIDTH + 1;
  196. break;
  197. case FIELD_TYPE_SHORT:
  198. S->bound_result[i].buffer_length = MAX_SMALLINT_WIDTH + 1;
  199. break;
  200. default:
  201. S->bound_result[i].buffer_length =
  202. S->fields[i].max_length? S->fields[i].max_length:
  203. S->fields[i].length;
  204. /* work-around for longtext and alike */
  205. if (S->bound_result[i].buffer_length > H->max_buffer_size) {
  206. S->bound_result[i].buffer_length = H->max_buffer_size;
  207. }
  208. }
  209. /* there are cases where the length reported by mysql is too short.
  210. * eg: when describing a table that contains an enum column. Since
  211. * we have no way of knowing the true length either, we'll bump up
  212. * our buffer size to a reasonable size, just in case */
  213. if (S->fields[i].max_length == 0 && S->bound_result[i].buffer_length < 128 && MYSQL_TYPE_VAR_STRING) {
  214. S->bound_result[i].buffer_length = 128;
  215. }
  216. S->out_length[i] = 0;
  217. S->bound_result[i].buffer = emalloc(S->bound_result[i].buffer_length);
  218. S->bound_result[i].is_null = &S->out_null[i];
  219. S->bound_result[i].length = &S->out_length[i];
  220. S->bound_result[i].buffer_type = MYSQL_TYPE_STRING;
  221. }
  222. if (mysql_stmt_bind_result(S->stmt, S->bound_result)) {
  223. pdo_mysql_error_stmt(stmt);
  224. PDO_DBG_RETURN(0);
  225. }
  226. /* if buffered, pre-fetch all the data */
  227. if (H->buffered) {
  228. mysql_stmt_store_result(S->stmt);
  229. }
  230. }
  231. }
  232. pdo_mysql_stmt_set_row_count(stmt TSRMLS_CC);
  233. PDO_DBG_RETURN(1);
  234. }
  235. /* }}} */
  236. #endif
  237. #ifdef PDO_USE_MYSQLND
  238. static int pdo_mysql_stmt_execute_prepared_mysqlnd(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
  239. {
  240. pdo_mysql_stmt *S = stmt->driver_data;
  241. pdo_mysql_db_handle *H = S->H;
  242. int i;
  243. PDO_DBG_ENTER("pdo_mysql_stmt_execute_prepared_mysqlnd");
  244. if (mysql_stmt_execute(S->stmt)) {
  245. pdo_mysql_error_stmt(stmt);
  246. PDO_DBG_RETURN(0);
  247. }
  248. if (S->result) {
  249. /* TODO: add a test to check if we really have zvals here... */
  250. mysql_free_result(S->result);
  251. S->result = NULL;
  252. }
  253. /* for SHOW/DESCRIBE and others the column/field count is not available before execute */
  254. stmt->column_count = mysql_stmt_field_count(S->stmt);
  255. for (i = 0; i < stmt->column_count; i++) {
  256. mysqlnd_stmt_bind_one_result(S->stmt, i);
  257. }
  258. S->result = mysqlnd_stmt_result_metadata(S->stmt);
  259. if (S->result) {
  260. S->fields = mysql_fetch_fields(S->result);
  261. /* if buffered, pre-fetch all the data */
  262. if (H->buffered) {
  263. if (mysql_stmt_store_result(S->stmt)) {
  264. PDO_DBG_RETURN(0);
  265. }
  266. }
  267. }
  268. pdo_mysql_stmt_set_row_count(stmt TSRMLS_CC);
  269. PDO_DBG_RETURN(1);
  270. }
  271. /* }}} */
  272. #endif
  273. static int pdo_mysql_stmt_execute(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
  274. {
  275. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  276. pdo_mysql_db_handle *H = S->H;
  277. PDO_DBG_ENTER("pdo_mysql_stmt_execute");
  278. PDO_DBG_INF_FMT("stmt=%p", S->stmt);
  279. if (S->stmt) {
  280. PDO_DBG_RETURN(pdo_mysql_stmt_execute_prepared(stmt));
  281. }
  282. /* ensure that we free any previous unfetched results */
  283. if (S->result) {
  284. mysql_free_result(S->result);
  285. S->result = NULL;
  286. }
  287. if (mysql_real_query(H->server, stmt->active_query_string, stmt->active_query_stringlen) != 0) {
  288. pdo_mysql_error_stmt(stmt);
  289. PDO_DBG_RETURN(0);
  290. }
  291. PDO_DBG_RETURN(pdo_mysql_fill_stmt_from_result(stmt TSRMLS_CC));
  292. }
  293. /* }}} */
  294. static int pdo_mysql_stmt_next_rowset(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
  295. {
  296. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  297. pdo_mysql_db_handle *H = S->H;
  298. long row_count;
  299. PDO_DBG_ENTER("pdo_mysql_stmt_next_rowset");
  300. PDO_DBG_INF_FMT("stmt=%p", S->stmt);
  301. #if PDO_USE_MYSQLND
  302. if (!H->emulate_prepare) {
  303. if (!mysqlnd_stmt_more_results(S->stmt)) {
  304. PDO_DBG_RETURN(0);
  305. }
  306. if (mysqlnd_stmt_next_result(S->stmt)) {
  307. PDO_DBG_RETURN(0);
  308. }
  309. if (!mysqlnd_stmt_more_results(S->stmt)) {
  310. /*
  311. MySQL gives us n + 1 result sets for
  312. CALL proc() and n result sets returned by the proc itself.
  313. Result set n + 1 is about the procedure call itself.
  314. As the PDO emulation does not return it, we skip it as well
  315. */
  316. PDO_DBG_RETURN(0);
  317. }
  318. /* TODO - this code is stolen from execute() - see above */
  319. if (S->result) {
  320. mysql_free_result(S->result);
  321. S->result = NULL;
  322. }
  323. {
  324. /* for SHOW/DESCRIBE and others the column/field count is not available before execute */
  325. int i;
  326. stmt->column_count = mysql_stmt_field_count(S->stmt);
  327. for (i = 0; i < stmt->column_count; i++) {
  328. mysqlnd_stmt_bind_one_result(S->stmt, i);
  329. }
  330. }
  331. S->result = mysqlnd_stmt_result_metadata(S->stmt);
  332. if (S->result) {
  333. S->fields = mysql_fetch_fields(S->result);
  334. /* if buffered, pre-fetch all the data */
  335. if (H->buffered) {
  336. if (mysql_stmt_store_result(S->stmt)) {
  337. PDO_DBG_RETURN(1);
  338. }
  339. }
  340. }
  341. row_count = (long) mysql_stmt_affected_rows(S->stmt);
  342. if (row_count != (long)-1) {
  343. stmt->row_count = row_count;
  344. }
  345. PDO_DBG_RETURN(1);
  346. }
  347. #endif
  348. /* ensure that we free any previous unfetched results */
  349. #ifndef PDO_USE_MYSQLND
  350. if (S->stmt) {
  351. stmt->column_count = (int)mysql_num_fields(S->result);
  352. mysql_stmt_free_result(S->stmt);
  353. }
  354. #endif
  355. if (S->result) {
  356. mysql_free_result(S->result);
  357. S->result = NULL;
  358. }
  359. if (!mysql_more_results(H->server)) {
  360. /* No more results */
  361. PDO_DBG_RETURN(0);
  362. }
  363. #if PDO_USE_MYSQLND
  364. if (mysql_next_result(H->server) == FAIL) {
  365. pdo_mysql_error_stmt(stmt);
  366. PDO_DBG_RETURN(0);
  367. } else {
  368. PDO_DBG_RETURN(pdo_mysql_fill_stmt_from_result(stmt TSRMLS_CC));
  369. }
  370. #else
  371. if (mysql_next_result(H->server) > 0) {
  372. pdo_mysql_error_stmt(stmt);
  373. PDO_DBG_RETURN(0);
  374. } else {
  375. PDO_DBG_RETURN(pdo_mysql_fill_stmt_from_result(stmt TSRMLS_CC));
  376. }
  377. #endif
  378. }
  379. /* }}} */
  380. static const char * const pdo_param_event_names[] =
  381. {
  382. "PDO_PARAM_EVT_ALLOC",
  383. "PDO_PARAM_EVT_FREE",
  384. "PDO_PARAM_EVT_EXEC_PRE",
  385. "PDO_PARAM_EVT_EXEC_POST",
  386. "PDO_PARAM_EVT_FETCH_PRE",
  387. "PDO_PARAM_EVT_FETCH_POST",
  388. "PDO_PARAM_EVT_NORMALIZE",
  389. };
  390. static int pdo_mysql_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, enum pdo_param_event event_type TSRMLS_DC) /* {{{ */
  391. {
  392. #ifndef PDO_USE_MYSQLND
  393. PDO_MYSQL_PARAM_BIND *b;
  394. #endif
  395. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  396. PDO_DBG_ENTER("pdo_mysql_stmt_param_hook");
  397. PDO_DBG_INF_FMT("stmt=%p", S->stmt);
  398. PDO_DBG_INF_FMT("event = %s", pdo_param_event_names[event_type]);
  399. if (S->stmt && param->is_param) {
  400. switch (event_type) {
  401. case PDO_PARAM_EVT_ALLOC:
  402. /* sanity check parameter number range */
  403. if (param->paramno < 0 || param->paramno >= S->num_params) {
  404. strcpy(stmt->error_code, "HY093");
  405. PDO_DBG_RETURN(0);
  406. }
  407. S->params_given++;
  408. #ifndef PDO_USE_MYSQLND
  409. b = &S->params[param->paramno];
  410. param->driver_data = b;
  411. b->is_null = &S->in_null[param->paramno];
  412. b->length = &S->in_length[param->paramno];
  413. /* recall how many parameters have been provided */
  414. #endif
  415. PDO_DBG_RETURN(1);
  416. case PDO_PARAM_EVT_EXEC_PRE:
  417. if (S->params_given < (unsigned int) S->num_params) {
  418. /* too few parameter bound */
  419. PDO_DBG_ERR("too few parameters bound");
  420. strcpy(stmt->error_code, "HY093");
  421. PDO_DBG_RETURN(0);
  422. }
  423. #if PDO_USE_MYSQLND
  424. if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_NULL ||
  425. Z_TYPE_P(param->parameter) == IS_NULL) {
  426. mysqlnd_stmt_bind_one_param(S->stmt, param->paramno, param->parameter, MYSQL_TYPE_NULL);
  427. PDO_DBG_RETURN(1);
  428. }
  429. #else
  430. b = (PDO_MYSQL_PARAM_BIND*)param->driver_data;
  431. *b->is_null = 0;
  432. if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_NULL ||
  433. Z_TYPE_P(param->parameter) == IS_NULL) {
  434. *b->is_null = 1;
  435. b->buffer_type = MYSQL_TYPE_STRING;
  436. b->buffer = NULL;
  437. b->buffer_length = 0;
  438. *b->length = 0;
  439. PDO_DBG_RETURN(1);
  440. }
  441. #endif /* PDO_USE_MYSQLND */
  442. switch (PDO_PARAM_TYPE(param->param_type)) {
  443. case PDO_PARAM_STMT:
  444. PDO_DBG_RETURN(0);
  445. case PDO_PARAM_LOB:
  446. PDO_DBG_INF("PDO_PARAM_LOB");
  447. if (Z_TYPE_P(param->parameter) == IS_RESOURCE) {
  448. php_stream *stm;
  449. php_stream_from_zval_no_verify(stm, &param->parameter);
  450. if (stm) {
  451. SEPARATE_ZVAL_IF_NOT_REF(&param->parameter);
  452. Z_TYPE_P(param->parameter) = IS_STRING;
  453. Z_STRLEN_P(param->parameter) = php_stream_copy_to_mem(stm,
  454. &Z_STRVAL_P(param->parameter), PHP_STREAM_COPY_ALL, 0);
  455. } else {
  456. pdo_raise_impl_error(stmt->dbh, stmt, "HY105", "Expected a stream resource" TSRMLS_CC);
  457. return 0;
  458. }
  459. }
  460. /* fall through */
  461. default:
  462. ;
  463. }
  464. #if PDO_USE_MYSQLND
  465. /* Is it really correct to check the zval's type? - But well, that's what the old code below does, too */
  466. PDO_DBG_INF_FMT("param->parameter->type=%d", Z_TYPE_P(param->parameter));
  467. switch (Z_TYPE_P(param->parameter)) {
  468. case IS_STRING:
  469. mysqlnd_stmt_bind_one_param(S->stmt, param->paramno, param->parameter, MYSQL_TYPE_VAR_STRING);
  470. break;
  471. case IS_LONG:
  472. #if SIZEOF_LONG==8
  473. mysqlnd_stmt_bind_one_param(S->stmt, param->paramno, param->parameter, MYSQL_TYPE_LONGLONG);
  474. #elif SIZEOF_LONG==4
  475. mysqlnd_stmt_bind_one_param(S->stmt, param->paramno, param->parameter, MYSQL_TYPE_LONG);
  476. #endif /* SIZEOF_LONG */
  477. break;
  478. case IS_DOUBLE:
  479. mysqlnd_stmt_bind_one_param(S->stmt, param->paramno, param->parameter, MYSQL_TYPE_DOUBLE);
  480. break;
  481. default:
  482. PDO_DBG_RETURN(0);
  483. }
  484. PDO_DBG_RETURN(1);
  485. #else
  486. PDO_DBG_INF_FMT("param->parameter->type=%d", Z_TYPE_P(param->parameter));
  487. switch (Z_TYPE_P(param->parameter)) {
  488. case IS_STRING:
  489. b->buffer_type = MYSQL_TYPE_STRING;
  490. b->buffer = Z_STRVAL_P(param->parameter);
  491. b->buffer_length = Z_STRLEN_P(param->parameter);
  492. *b->length = Z_STRLEN_P(param->parameter);
  493. PDO_DBG_RETURN(1);
  494. case IS_LONG:
  495. b->buffer_type = MYSQL_TYPE_LONG;
  496. b->buffer = &Z_LVAL_P(param->parameter);
  497. PDO_DBG_RETURN(1);
  498. case IS_DOUBLE:
  499. b->buffer_type = MYSQL_TYPE_DOUBLE;
  500. b->buffer = &Z_DVAL_P(param->parameter);
  501. PDO_DBG_RETURN(1);
  502. default:
  503. PDO_DBG_RETURN(0);
  504. }
  505. #endif /* PDO_USE_MYSQLND */
  506. case PDO_PARAM_EVT_FREE:
  507. case PDO_PARAM_EVT_EXEC_POST:
  508. case PDO_PARAM_EVT_FETCH_PRE:
  509. case PDO_PARAM_EVT_FETCH_POST:
  510. case PDO_PARAM_EVT_NORMALIZE:
  511. /* do nothing */
  512. break;
  513. }
  514. }
  515. PDO_DBG_RETURN(1);
  516. }
  517. /* }}} */
  518. static int pdo_mysql_stmt_fetch(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, long offset TSRMLS_DC) /* {{{ */
  519. {
  520. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  521. #if PDO_USE_MYSQLND
  522. zend_bool fetched_anything;
  523. PDO_DBG_ENTER("pdo_mysql_stmt_fetch");
  524. PDO_DBG_INF_FMT("stmt=%p", S->stmt);
  525. if (S->stmt) {
  526. if (FAIL == mysqlnd_stmt_fetch(S->stmt, &fetched_anything) || fetched_anything == FALSE) {
  527. PDO_DBG_RETURN(0);
  528. }
  529. PDO_DBG_RETURN(1);
  530. }
  531. #else
  532. int ret;
  533. if (S->stmt) {
  534. ret = mysql_stmt_fetch(S->stmt);
  535. # ifdef MYSQL_DATA_TRUNCATED
  536. if (ret == MYSQL_DATA_TRUNCATED) {
  537. ret = 0;
  538. }
  539. # endif
  540. if (ret) {
  541. if (ret != MYSQL_NO_DATA) {
  542. pdo_mysql_error_stmt(stmt);
  543. }
  544. PDO_DBG_RETURN(0);
  545. }
  546. PDO_DBG_RETURN(1);
  547. }
  548. #endif /* PDO_USE_MYSQLND */
  549. if (!S->result) {
  550. strcpy(stmt->error_code, "HY000");
  551. PDO_DBG_RETURN(0);
  552. }
  553. #if PDO_USE_MYSQLND
  554. if (!S->stmt && S->current_data) {
  555. mnd_free(S->current_data);
  556. }
  557. #endif /* PDO_USE_MYSQLND */
  558. if ((S->current_data = mysql_fetch_row(S->result)) == NULL) {
  559. #if PDO_USE_MYSQLND
  560. if (S->result->unbuf && !S->result->unbuf->eof_reached && mysql_errno(S->H->server)) {
  561. #else
  562. if (!S->result->eof && mysql_errno(S->H->server)) {
  563. #endif
  564. pdo_mysql_error_stmt(stmt);
  565. }
  566. PDO_DBG_RETURN(0);
  567. }
  568. S->current_lengths = mysql_fetch_lengths(S->result);
  569. PDO_DBG_RETURN(1);
  570. }
  571. /* }}} */
  572. static int pdo_mysql_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) /* {{{ */
  573. {
  574. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  575. struct pdo_column_data *cols = stmt->columns;
  576. int i;
  577. PDO_DBG_ENTER("pdo_mysql_stmt_describe");
  578. PDO_DBG_INF_FMT("stmt=%p", S->stmt);
  579. if (!S->result) {
  580. PDO_DBG_RETURN(0);
  581. }
  582. if (colno >= stmt->column_count) {
  583. /* error invalid column */
  584. PDO_DBG_RETURN(0);
  585. }
  586. /* fetch all on demand, this seems easiest
  587. ** if we've been here before bail out
  588. */
  589. if (cols[0].name) {
  590. PDO_DBG_RETURN(1);
  591. }
  592. for (i = 0; i < stmt->column_count; i++) {
  593. int namelen;
  594. if (S->H->fetch_table_names) {
  595. namelen = spprintf(&cols[i].name, 0, "%s.%s", S->fields[i].table, S->fields[i].name);
  596. cols[i].namelen = namelen;
  597. } else {
  598. namelen = strlen(S->fields[i].name);
  599. cols[i].namelen = namelen;
  600. cols[i].name = estrndup(S->fields[i].name, namelen);
  601. }
  602. cols[i].precision = S->fields[i].decimals;
  603. cols[i].maxlen = S->fields[i].length;
  604. #ifdef PDO_USE_MYSQLND
  605. if (S->stmt) {
  606. cols[i].param_type = PDO_PARAM_ZVAL;
  607. } else
  608. #endif
  609. {
  610. cols[i].param_type = PDO_PARAM_STR;
  611. }
  612. }
  613. PDO_DBG_RETURN(1);
  614. }
  615. /* }}} */
  616. static int pdo_mysql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC) /* {{{ */
  617. {
  618. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  619. PDO_DBG_ENTER("pdo_mysql_stmt_get_col");
  620. PDO_DBG_INF_FMT("stmt=%p", S->stmt);
  621. if (!S->result) {
  622. PDO_DBG_RETURN(0);
  623. }
  624. /* With mysqlnd data is stored inside mysqlnd, not S->current_data */
  625. if (!S->stmt) {
  626. if (S->current_data == NULL || !S->result) {
  627. PDO_DBG_RETURN(0);
  628. }
  629. }
  630. if (colno >= stmt->column_count) {
  631. /* error invalid column */
  632. PDO_DBG_RETURN(0);
  633. }
  634. #if PDO_USE_MYSQLND
  635. if (S->stmt) {
  636. Z_ADDREF_P(S->stmt->data->result_bind[colno].zv);
  637. *ptr = (char*)&S->stmt->data->result_bind[colno].zv;
  638. *len = sizeof(zval);
  639. PDO_DBG_RETURN(1);
  640. }
  641. #else
  642. if (S->stmt) {
  643. if (S->out_null[colno]) {
  644. *ptr = NULL;
  645. *len = 0;
  646. PDO_DBG_RETURN(1);
  647. }
  648. *ptr = S->bound_result[colno].buffer;
  649. if (S->out_length[colno] > S->bound_result[colno].buffer_length) {
  650. /* mysql lied about the column width */
  651. strcpy(stmt->error_code, "01004"); /* truncated */
  652. S->out_length[colno] = S->bound_result[colno].buffer_length;
  653. *len = S->out_length[colno];
  654. PDO_DBG_RETURN(0);
  655. }
  656. *len = S->out_length[colno];
  657. PDO_DBG_RETURN(1);
  658. }
  659. #endif
  660. *ptr = S->current_data[colno];
  661. *len = S->current_lengths[colno];
  662. PDO_DBG_RETURN(1);
  663. } /* }}} */
  664. static char *type_to_name_native(int type) /* {{{ */
  665. {
  666. #define PDO_MYSQL_NATIVE_TYPE_NAME(x) case FIELD_TYPE_##x: return #x;
  667. switch (type) {
  668. PDO_MYSQL_NATIVE_TYPE_NAME(STRING)
  669. PDO_MYSQL_NATIVE_TYPE_NAME(VAR_STRING)
  670. #ifdef FIELD_TYPE_TINY
  671. PDO_MYSQL_NATIVE_TYPE_NAME(TINY)
  672. #endif
  673. #ifdef FIELD_TYPE_BIT
  674. PDO_MYSQL_NATIVE_TYPE_NAME(BIT)
  675. #endif
  676. PDO_MYSQL_NATIVE_TYPE_NAME(SHORT)
  677. PDO_MYSQL_NATIVE_TYPE_NAME(LONG)
  678. PDO_MYSQL_NATIVE_TYPE_NAME(LONGLONG)
  679. PDO_MYSQL_NATIVE_TYPE_NAME(INT24)
  680. PDO_MYSQL_NATIVE_TYPE_NAME(FLOAT)
  681. PDO_MYSQL_NATIVE_TYPE_NAME(DOUBLE)
  682. PDO_MYSQL_NATIVE_TYPE_NAME(DECIMAL)
  683. #ifdef FIELD_TYPE_NEWDECIMAL
  684. PDO_MYSQL_NATIVE_TYPE_NAME(NEWDECIMAL)
  685. #endif
  686. #ifdef FIELD_TYPE_GEOMETRY
  687. PDO_MYSQL_NATIVE_TYPE_NAME(GEOMETRY)
  688. #endif
  689. PDO_MYSQL_NATIVE_TYPE_NAME(TIMESTAMP)
  690. #ifdef FIELD_TYPE_YEAR
  691. PDO_MYSQL_NATIVE_TYPE_NAME(YEAR)
  692. #endif
  693. PDO_MYSQL_NATIVE_TYPE_NAME(SET)
  694. PDO_MYSQL_NATIVE_TYPE_NAME(ENUM)
  695. PDO_MYSQL_NATIVE_TYPE_NAME(DATE)
  696. #ifdef FIELD_TYPE_NEWDATE
  697. PDO_MYSQL_NATIVE_TYPE_NAME(NEWDATE)
  698. #endif
  699. PDO_MYSQL_NATIVE_TYPE_NAME(TIME)
  700. PDO_MYSQL_NATIVE_TYPE_NAME(DATETIME)
  701. PDO_MYSQL_NATIVE_TYPE_NAME(TINY_BLOB)
  702. PDO_MYSQL_NATIVE_TYPE_NAME(MEDIUM_BLOB)
  703. PDO_MYSQL_NATIVE_TYPE_NAME(LONG_BLOB)
  704. PDO_MYSQL_NATIVE_TYPE_NAME(BLOB)
  705. PDO_MYSQL_NATIVE_TYPE_NAME(NULL)
  706. default:
  707. return NULL;
  708. }
  709. #undef PDO_MYSQL_NATIVE_TYPE_NAME
  710. } /* }}} */
  711. static int pdo_mysql_stmt_col_meta(pdo_stmt_t *stmt, long colno, zval *return_value TSRMLS_DC) /* {{{ */
  712. {
  713. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  714. const MYSQL_FIELD *F;
  715. zval *flags;
  716. char *str;
  717. PDO_DBG_ENTER("pdo_mysql_stmt_col_meta");
  718. PDO_DBG_INF_FMT("stmt=%p", S->stmt);
  719. if (!S->result) {
  720. PDO_DBG_RETURN(FAILURE);
  721. }
  722. if (colno >= stmt->column_count) {
  723. /* error invalid column */
  724. PDO_DBG_RETURN(FAILURE);
  725. }
  726. array_init(return_value);
  727. MAKE_STD_ZVAL(flags);
  728. array_init(flags);
  729. F = S->fields + colno;
  730. if (F->def) {
  731. add_assoc_string(return_value, "mysql:def", F->def, 1);
  732. }
  733. if (IS_NOT_NULL(F->flags)) {
  734. add_next_index_string(flags, "not_null", 1);
  735. }
  736. if (IS_PRI_KEY(F->flags)) {
  737. add_next_index_string(flags, "primary_key", 1);
  738. }
  739. if (F->flags & MULTIPLE_KEY_FLAG) {
  740. add_next_index_string(flags, "multiple_key", 1);
  741. }
  742. if (F->flags & UNIQUE_KEY_FLAG) {
  743. add_next_index_string(flags, "unique_key", 1);
  744. }
  745. if (IS_BLOB(F->flags)) {
  746. add_next_index_string(flags, "blob", 1);
  747. }
  748. str = type_to_name_native(F->type);
  749. if (str) {
  750. add_assoc_string(return_value, "native_type", str, 1);
  751. }
  752. #ifdef PDO_USE_MYSQLND
  753. switch (F->type) {
  754. case MYSQL_TYPE_BIT:
  755. case MYSQL_TYPE_YEAR:
  756. case MYSQL_TYPE_TINY:
  757. case MYSQL_TYPE_SHORT:
  758. case MYSQL_TYPE_INT24:
  759. case MYSQL_TYPE_LONG:
  760. #if SIZEOF_LONG==8
  761. case MYSQL_TYPE_LONGLONG:
  762. #endif
  763. add_assoc_long(return_value, "pdo_type", PDO_PARAM_INT);
  764. break;
  765. default:
  766. add_assoc_long(return_value, "pdo_type", PDO_PARAM_STR);
  767. break;
  768. }
  769. #endif
  770. add_assoc_zval(return_value, "flags", flags);
  771. add_assoc_string(return_value, "table", (char *) (F->table?F->table:""), 1);
  772. PDO_DBG_RETURN(SUCCESS);
  773. } /* }}} */
  774. static int pdo_mysql_stmt_cursor_closer(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
  775. {
  776. pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
  777. PDO_DBG_ENTER("pdo_mysql_stmt_cursor_closer");
  778. PDO_DBG_INF_FMT("stmt=%p", S->stmt);
  779. if (S->result) {
  780. mysql_free_result(S->result);
  781. S->result = NULL;
  782. }
  783. if (S->stmt) {
  784. int retval;
  785. retval = mysql_stmt_free_result(S->stmt);
  786. PDO_DBG_RETURN(retval ? 0 : 1);
  787. }
  788. while (mysql_more_results(S->H->server)) {
  789. MYSQL_RES *res;
  790. if (mysql_next_result(S->H->server) != 0) {
  791. break;
  792. }
  793. res = mysql_store_result(S->H->server);
  794. if (res) {
  795. mysql_free_result(res);
  796. }
  797. }
  798. PDO_DBG_RETURN(1);
  799. }
  800. /* }}} */
  801. struct pdo_stmt_methods mysql_stmt_methods = {
  802. pdo_mysql_stmt_dtor,
  803. pdo_mysql_stmt_execute,
  804. pdo_mysql_stmt_fetch,
  805. pdo_mysql_stmt_describe,
  806. pdo_mysql_stmt_get_col,
  807. pdo_mysql_stmt_param_hook,
  808. NULL, /* set_attr */
  809. NULL, /* get_attr */
  810. pdo_mysql_stmt_col_meta,
  811. pdo_mysql_stmt_next_rowset,
  812. pdo_mysql_stmt_cursor_closer
  813. };
  814. /*
  815. * Local variables:
  816. * tab-width: 4
  817. * c-basic-offset: 4
  818. * End:
  819. * vim600: noet sw=4 ts=4 fdm=marker
  820. * vim<600: noet sw=4 ts=4
  821. */