oci8_statement.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  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: Stig Sæther Bakken <ssb@php.net> |
  16. | Thies C. Arntzen <thies@thieso.net> |
  17. | |
  18. | Collection support by Andy Sautins <asautins@veripost.net> |
  19. | Temporary LOB support by David Benson <dbenson@mancala.com> |
  20. | ZTS per process OCIPLogon by Harald Radi <harald.radi@nme.at> |
  21. | |
  22. | Redesigned by: Antony Dovgal <antony@zend.com> |
  23. | Andi Gutmans <andi@zend.com> |
  24. | Wez Furlong <wez@omniti.com> |
  25. +----------------------------------------------------------------------+
  26. */
  27. /* $Id$ */
  28. #ifdef HAVE_CONFIG_H
  29. #include "config.h"
  30. #endif
  31. #include "php.h"
  32. #include "ext/standard/info.h"
  33. #include "php_ini.h"
  34. #if HAVE_OCI8
  35. #include "php_oci8.h"
  36. #include "php_oci8_int.h"
  37. /* {{{ php_oci_statement_create()
  38. Create statemend handle and allocate necessary resources */
  39. php_oci_statement *php_oci_statement_create(php_oci_connection *connection, char *query, int query_len TSRMLS_DC)
  40. {
  41. php_oci_statement *statement;
  42. sword errstatus;
  43. connection->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  44. statement = ecalloc(1,sizeof(php_oci_statement));
  45. if (!query_len) {
  46. /* do not allocate stmt handle for refcursors, we'll get it from OCIStmtPrepare2() */
  47. PHP_OCI_CALL(OCIHandleAlloc, (connection->env, (dvoid **)&(statement->stmt), OCI_HTYPE_STMT, 0, NULL));
  48. }
  49. PHP_OCI_CALL(OCIHandleAlloc, (connection->env, (dvoid **)&(statement->err), OCI_HTYPE_ERROR, 0, NULL));
  50. if (query_len > 0) {
  51. PHP_OCI_CALL_RETURN(errstatus, OCIStmtPrepare2,
  52. (
  53. connection->svc,
  54. &(statement->stmt),
  55. connection->err,
  56. (text *)query,
  57. query_len,
  58. NULL,
  59. 0,
  60. OCI_NTV_SYNTAX,
  61. OCI_DEFAULT
  62. )
  63. );
  64. #ifdef HAVE_OCI8_DTRACE
  65. if (DTRACE_OCI8_SQLTEXT_ENABLED()) {
  66. DTRACE_OCI8_SQLTEXT(connection, connection->client_id, statement, query);
  67. }
  68. #endif /* HAVE_OCI8_DTRACE */
  69. if (errstatus != OCI_SUCCESS) {
  70. connection->errcode = php_oci_error(connection->err, errstatus TSRMLS_CC);
  71. PHP_OCI_CALL(OCIStmtRelease, (statement->stmt, statement->err, NULL, 0, OCI_STRLS_CACHE_DELETE));
  72. PHP_OCI_CALL(OCIHandleFree,(statement->err, OCI_HTYPE_ERROR));
  73. PHP_OCI_HANDLE_ERROR(connection, connection->errcode);
  74. efree(statement);
  75. return NULL;
  76. }
  77. }
  78. if (query && query_len) {
  79. statement->last_query = estrndup(query, query_len);
  80. statement->last_query_len = query_len;
  81. }
  82. else {
  83. statement->last_query = NULL;
  84. statement->last_query_len = 0;
  85. }
  86. statement->connection = connection;
  87. statement->has_data = 0;
  88. statement->has_descr = 0;
  89. statement->parent_stmtid = 0;
  90. statement->impres_child_stmt = NULL;
  91. statement->impres_count = 0;
  92. statement->impres_flag = PHP_OCI_IMPRES_UNKNOWN; /* may or may not have Implicit Result Set children */
  93. zend_list_addref(statement->connection->id);
  94. if (OCI_G(default_prefetch) >= 0) {
  95. php_oci_statement_set_prefetch(statement, (ub4)OCI_G(default_prefetch) TSRMLS_CC);
  96. } else {
  97. php_oci_statement_set_prefetch(statement, (ub4)100 TSRMLS_CC); /* semi-arbitrary, "sensible default" */
  98. }
  99. PHP_OCI_REGISTER_RESOURCE(statement, le_statement);
  100. OCI_G(num_statements)++;
  101. return statement;
  102. }
  103. /* }}} */
  104. /* {{{ php_oci_get_implicit_resultset()
  105. Fetch implicit result set statement resource */
  106. php_oci_statement *php_oci_get_implicit_resultset(php_oci_statement *statement TSRMLS_DC)
  107. {
  108. #if (OCI_MAJOR_VERSION < 12)
  109. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Implicit results are available in Oracle Database 12c onwards");
  110. return NULL;
  111. #else
  112. void *result;
  113. ub4 rtype;
  114. php_oci_statement *statement2; /* implicit result set statement handle */
  115. sword errstatus;
  116. PHP_OCI_CALL_RETURN(errstatus, OCIStmtGetNextResult, (statement->stmt, statement->err, &result, &rtype, OCI_DEFAULT));
  117. if (errstatus == OCI_NO_DATA) {
  118. return NULL;
  119. }
  120. if (rtype != OCI_RESULT_TYPE_SELECT) {
  121. /* Only OCI_RESULT_TYPE_SELECT is supported by Oracle DB 12cR1 */
  122. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unexpected implicit result type returned from Oracle Database");
  123. return NULL;
  124. } else {
  125. statement2 = ecalloc(1,sizeof(php_oci_statement));
  126. PHP_OCI_CALL(OCIHandleAlloc, (statement->connection->env, (dvoid **)&(statement2->err), OCI_HTYPE_ERROR, 0, NULL));
  127. statement2->stmt = (OCIStmt *)result;
  128. statement2->parent_stmtid = statement->id;
  129. statement2->impres_child_stmt = NULL;
  130. statement2->impres_count = 0;
  131. statement2->impres_flag = PHP_OCI_IMPRES_IS_CHILD;
  132. statement2->connection = statement->connection;
  133. statement2->errcode = 0;
  134. statement2->last_query = NULL;
  135. statement2->last_query_len = 0;
  136. statement2->columns = NULL;
  137. statement2->binds = NULL;
  138. statement2->defines = NULL;
  139. statement2->ncolumns = 0;
  140. statement2->executed = 0;
  141. statement2->has_data = 0;
  142. statement2->has_descr = 0;
  143. statement2->stmttype = 0;
  144. zend_list_addref(statement->id);
  145. zend_list_addref(statement2->connection->id);
  146. php_oci_statement_set_prefetch(statement2, statement->prefetch_count TSRMLS_CC);
  147. PHP_OCI_REGISTER_RESOURCE(statement2, le_statement);
  148. OCI_G(num_statements)++;
  149. return statement2;
  150. }
  151. #endif /* OCI_MAJOR_VERSION < 12 */
  152. }
  153. /* }}} */
  154. /* {{{ php_oci_statement_set_prefetch()
  155. Set prefetch buffer size for the statement */
  156. int php_oci_statement_set_prefetch(php_oci_statement *statement, ub4 prefetch TSRMLS_DC)
  157. {
  158. sword errstatus;
  159. if (prefetch > 20000) {
  160. prefetch = 20000; /* keep it somewhat sane */
  161. }
  162. PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, (statement->stmt, OCI_HTYPE_STMT, &prefetch, 0, OCI_ATTR_PREFETCH_ROWS, statement->err));
  163. if (errstatus != OCI_SUCCESS) {
  164. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  165. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  166. statement->prefetch_count = 0;
  167. return 1;
  168. }
  169. statement->prefetch_count = prefetch;
  170. statement->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  171. return 0;
  172. }
  173. /* }}} */
  174. /* {{{ php_oci_cleanup_pre_fetch()
  175. Helper function to cleanup ref-cursors and descriptors from the previous row */
  176. int php_oci_cleanup_pre_fetch(void *data TSRMLS_DC)
  177. {
  178. php_oci_out_column *outcol = data;
  179. if (!outcol->is_descr && !outcol->is_cursor)
  180. return ZEND_HASH_APPLY_KEEP;
  181. switch(outcol->data_type) {
  182. case SQLT_CLOB:
  183. case SQLT_BLOB:
  184. case SQLT_RDD:
  185. case SQLT_BFILE:
  186. if (outcol->descid) {
  187. zend_list_delete(outcol->descid);
  188. outcol->descid = 0;
  189. }
  190. break;
  191. case SQLT_RSET:
  192. if (outcol->stmtid) {
  193. zend_list_delete(outcol->stmtid);
  194. outcol->stmtid = 0;
  195. outcol->nested_statement = NULL;
  196. }
  197. break;
  198. default:
  199. break;
  200. }
  201. return ZEND_HASH_APPLY_KEEP;
  202. }
  203. /* }}} */
  204. /* {{{ php_oci_statement_fetch()
  205. Fetch a row from the statement */
  206. int php_oci_statement_fetch(php_oci_statement *statement, ub4 nrows TSRMLS_DC)
  207. {
  208. int i;
  209. void *handlepp;
  210. ub4 typep, iterp, idxp;
  211. ub1 in_outp, piecep;
  212. zend_bool piecewisecols = 0;
  213. php_oci_out_column *column;
  214. sword errstatus;
  215. statement->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  216. if (statement->has_descr && statement->columns) {
  217. zend_hash_apply(statement->columns, (apply_func_t) php_oci_cleanup_pre_fetch TSRMLS_CC);
  218. }
  219. PHP_OCI_CALL_RETURN(errstatus, OCIStmtFetch, (statement->stmt, statement->err, nrows, OCI_FETCH_NEXT, OCI_DEFAULT));
  220. if (errstatus == OCI_NO_DATA || nrows == 0) {
  221. if (statement->last_query == NULL) {
  222. /* reset define-list for refcursors */
  223. if (statement->columns) {
  224. zend_hash_destroy(statement->columns);
  225. efree(statement->columns);
  226. statement->columns = NULL;
  227. statement->ncolumns = 0;
  228. }
  229. statement->executed = 0;
  230. }
  231. statement->has_data = 0;
  232. if (nrows == 0) {
  233. /* this is exactly what we requested */
  234. return 0;
  235. }
  236. return 1;
  237. }
  238. /* reset length for all piecewise columns */
  239. for (i = 0; i < statement->ncolumns; i++) {
  240. column = php_oci_statement_get_column(statement, i + 1, NULL, 0 TSRMLS_CC);
  241. if (column && column->piecewise) {
  242. column->retlen4 = 0;
  243. piecewisecols = 1;
  244. }
  245. }
  246. while (errstatus == OCI_NEED_DATA) {
  247. if (piecewisecols) {
  248. PHP_OCI_CALL_RETURN(errstatus,
  249. OCIStmtGetPieceInfo,
  250. (
  251. statement->stmt,
  252. statement->err,
  253. &handlepp,
  254. &typep,
  255. &in_outp,
  256. &iterp,
  257. &idxp,
  258. &piecep
  259. )
  260. );
  261. /* scan through our columns for a piecewise column with a matching handle */
  262. for (i = 0; i < statement->ncolumns; i++) {
  263. column = php_oci_statement_get_column(statement, i + 1, NULL, 0 TSRMLS_CC);
  264. if (column && column->piecewise && handlepp == column->oci_define) {
  265. if (!column->data) {
  266. column->data = (text *) ecalloc(1, PHP_OCI_PIECE_SIZE + 1);
  267. } else {
  268. column->data = erealloc(column->data, column->retlen4 + PHP_OCI_PIECE_SIZE + 1);
  269. }
  270. column->cb_retlen = PHP_OCI_PIECE_SIZE;
  271. /* and instruct fetch to fetch waiting piece into our buffer */
  272. PHP_OCI_CALL(OCIStmtSetPieceInfo,
  273. (
  274. (void *) column->oci_define,
  275. OCI_HTYPE_DEFINE,
  276. statement->err,
  277. ((char*)column->data) + column->retlen4,
  278. &(column->cb_retlen),
  279. piecep,
  280. &column->indicator,
  281. &column->retcode
  282. )
  283. );
  284. }
  285. }
  286. }
  287. PHP_OCI_CALL_RETURN(errstatus, OCIStmtFetch, (statement->stmt, statement->err, nrows, OCI_FETCH_NEXT, OCI_DEFAULT));
  288. if (piecewisecols) {
  289. for (i = 0; i < statement->ncolumns; i++) {
  290. column = php_oci_statement_get_column(statement, i + 1, NULL, 0 TSRMLS_CC);
  291. if (column && column->piecewise && handlepp == column->oci_define) {
  292. column->retlen4 += column->cb_retlen;
  293. }
  294. }
  295. }
  296. }
  297. if (errstatus == OCI_SUCCESS_WITH_INFO || errstatus == OCI_SUCCESS) {
  298. statement->has_data = 1;
  299. /* do the stuff needed for OCIDefineByName */
  300. for (i = 0; i < statement->ncolumns; i++) {
  301. column = php_oci_statement_get_column(statement, i + 1, NULL, 0 TSRMLS_CC);
  302. if (column == NULL) {
  303. continue;
  304. }
  305. if (!column->define) {
  306. continue;
  307. }
  308. zval_dtor(column->define->zval);
  309. php_oci_column_to_zval(column, column->define->zval, 0 TSRMLS_CC);
  310. }
  311. return 0;
  312. }
  313. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  314. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  315. statement->has_data = 0;
  316. return 1;
  317. }
  318. /* }}} */
  319. /* {{{ php_oci_statement_get_column()
  320. Get column from the result set */
  321. php_oci_out_column *php_oci_statement_get_column(php_oci_statement *statement, long column_index, char *column_name, int column_name_len TSRMLS_DC)
  322. {
  323. php_oci_out_column *column = NULL;
  324. int i;
  325. if (statement->columns == NULL) { /* we release the columns at the end of a fetch */
  326. return NULL;
  327. }
  328. if (column_name) {
  329. for (i = 0; i < statement->ncolumns; i++) {
  330. column = php_oci_statement_get_column(statement, i + 1, NULL, 0 TSRMLS_CC);
  331. if (column == NULL) {
  332. continue;
  333. } else if (((int) column->name_len == column_name_len) && (!strncmp(column->name, column_name, column_name_len))) {
  334. return column;
  335. }
  336. }
  337. } else if (column_index != -1) {
  338. if (zend_hash_index_find(statement->columns, column_index, (void **)&column) == FAILURE) {
  339. return NULL;
  340. }
  341. return column;
  342. }
  343. return NULL;
  344. }
  345. /* }}} */
  346. /* {{{ php_oci_define_callback() */
  347. sb4 php_oci_define_callback(dvoid *ctx, OCIDefine *define, ub4 iter, dvoid **bufpp, ub4 **alenpp, ub1 *piecep, dvoid **indpp, ub2 **rcpp)
  348. {
  349. php_oci_out_column *outcol = (php_oci_out_column *)ctx;
  350. TSRMLS_FETCH();
  351. if (!outcol) {
  352. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid context pointer value");
  353. return OCI_ERROR;
  354. }
  355. switch(outcol->data_type) {
  356. case SQLT_RSET: {
  357. php_oci_statement *nested_stmt;
  358. nested_stmt = php_oci_statement_create(outcol->statement->connection, NULL, 0 TSRMLS_CC);
  359. if (!nested_stmt) {
  360. return OCI_ERROR;
  361. }
  362. nested_stmt->parent_stmtid = outcol->statement->id;
  363. zend_list_addref(outcol->statement->id);
  364. outcol->nested_statement = nested_stmt;
  365. outcol->stmtid = nested_stmt->id;
  366. *bufpp = nested_stmt->stmt;
  367. *alenpp = &(outcol->retlen4);
  368. *piecep = OCI_ONE_PIECE;
  369. *indpp = &(outcol->indicator);
  370. *rcpp = &(outcol->retcode);
  371. return OCI_CONTINUE;
  372. }
  373. break;
  374. case SQLT_RDD:
  375. case SQLT_BLOB:
  376. case SQLT_CLOB:
  377. case SQLT_BFILE: {
  378. php_oci_descriptor *descr;
  379. int dtype;
  380. if (outcol->data_type == SQLT_BFILE) {
  381. dtype = OCI_DTYPE_FILE;
  382. } else if (outcol->data_type == SQLT_RDD ) {
  383. dtype = OCI_DTYPE_ROWID;
  384. } else {
  385. dtype = OCI_DTYPE_LOB;
  386. }
  387. descr = php_oci_lob_create(outcol->statement->connection, dtype TSRMLS_CC);
  388. if (!descr) {
  389. return OCI_ERROR;
  390. }
  391. outcol->descid = descr->id;
  392. descr->charset_form = outcol->charset_form;
  393. *bufpp = descr->descriptor;
  394. *alenpp = &(outcol->retlen4);
  395. *piecep = OCI_ONE_PIECE;
  396. *indpp = &(outcol->indicator);
  397. *rcpp = &(outcol->retcode);
  398. return OCI_CONTINUE;
  399. }
  400. break;
  401. }
  402. return OCI_ERROR;
  403. }
  404. /* }}} */
  405. /* {{{ php_oci_statement_execute()
  406. Execute statement */
  407. int php_oci_statement_execute(php_oci_statement *statement, ub4 mode TSRMLS_DC)
  408. {
  409. php_oci_out_column *outcol;
  410. php_oci_out_column column;
  411. OCIParam *param = NULL;
  412. text *colname;
  413. ub4 counter;
  414. ub2 define_type;
  415. ub4 iters;
  416. ub4 colcount;
  417. ub2 dynamic;
  418. dvoid *buf;
  419. sword errstatus;
  420. switch (mode) {
  421. case OCI_COMMIT_ON_SUCCESS:
  422. case OCI_DESCRIBE_ONLY:
  423. case OCI_DEFAULT:
  424. /* only these are allowed */
  425. #ifdef HAVE_OCI8_DTRACE
  426. if (DTRACE_OCI8_EXECUTE_MODE_ENABLED()) {
  427. DTRACE_OCI8_EXECUTE_MODE(statement->connection, statement->connection->client_id, statement, mode);
  428. }
  429. #endif /* HAVE_OCI8_DTRACE */
  430. break;
  431. default:
  432. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid execute mode given: %d", mode);
  433. return 1;
  434. break;
  435. }
  436. if (!statement->stmttype) {
  437. /* get statement type */
  438. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (ub2 *)&statement->stmttype, (ub4 *)0, OCI_ATTR_STMT_TYPE, statement->err));
  439. if (errstatus != OCI_SUCCESS) {
  440. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  441. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  442. return 1;
  443. } else {
  444. statement->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  445. }
  446. }
  447. if (statement->stmttype == OCI_STMT_SELECT) {
  448. iters = 0;
  449. } else {
  450. iters = 1;
  451. }
  452. if (statement->last_query) { /* Don't execute REFCURSORS or Implicit Result Set handles */
  453. if (statement->binds) {
  454. int result = 0;
  455. zend_hash_apply_with_argument(statement->binds, (apply_func_arg_t) php_oci_bind_pre_exec, (void *)&result TSRMLS_CC);
  456. if (result) {
  457. return 1;
  458. }
  459. }
  460. /* execute statement */
  461. PHP_OCI_CALL_RETURN(errstatus, OCIStmtExecute, (statement->connection->svc, statement->stmt, statement->err, iters, 0, NULL, NULL, mode));
  462. if (errstatus != OCI_SUCCESS) {
  463. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  464. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  465. return 1;
  466. }
  467. if (statement->binds) {
  468. zend_hash_apply(statement->binds, (apply_func_t) php_oci_bind_post_exec TSRMLS_CC);
  469. }
  470. if (mode & OCI_COMMIT_ON_SUCCESS) {
  471. /* No need to rollback on disconnect */
  472. statement->connection->rb_on_disconnect = 0;
  473. } else if (statement->stmttype != OCI_STMT_SELECT) {
  474. /* Assume some uncommitted DML occurred */
  475. statement->connection->rb_on_disconnect = 1;
  476. }
  477. /* else for SELECT with OCI_NO_AUTO_COMMIT, leave
  478. * "rb_on_disconnect" at its previous value. SELECT can't
  479. * initiate uncommitted DML. (An AUTONOMOUS_TRANSACTION in
  480. * invoked PL/SQL must explicitly rollback/commit else the
  481. * SELECT fails).
  482. */
  483. statement->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  484. }
  485. if (statement->stmttype == OCI_STMT_SELECT && statement->executed == 0) {
  486. /* we only need to do the define step is this very statement is executed the first time! */
  487. statement->executed = 1;
  488. ALLOC_HASHTABLE(statement->columns);
  489. zend_hash_init(statement->columns, 13, NULL, php_oci_column_hash_dtor, 0);
  490. counter = 1;
  491. /* get number of columns */
  492. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (dvoid *)&colcount, (ub4 *)0, OCI_ATTR_PARAM_COUNT, statement->err));
  493. if (errstatus != OCI_SUCCESS) {
  494. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  495. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  496. return 1;
  497. }
  498. statement->ncolumns = colcount;
  499. for (counter = 1; counter <= colcount; counter++) {
  500. memset(&column,0,sizeof(php_oci_out_column));
  501. if (zend_hash_index_update(statement->columns, counter, &column, sizeof(php_oci_out_column), (void**) &outcol) == FAILURE) {
  502. efree(statement->columns);
  503. /* out of memory */
  504. return 1;
  505. }
  506. /* get column */
  507. PHP_OCI_CALL_RETURN(errstatus, OCIParamGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, statement->err, (dvoid**)&param, counter));
  508. if (errstatus != OCI_SUCCESS) {
  509. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  510. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  511. return 1;
  512. }
  513. /* get column datatype */
  514. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid *)&outcol->data_type, (ub4 *)0, OCI_ATTR_DATA_TYPE, statement->err));
  515. if (errstatus != OCI_SUCCESS) {
  516. PHP_OCI_CALL(OCIDescriptorFree, (param, OCI_DTYPE_PARAM));
  517. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  518. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  519. return 1;
  520. }
  521. /* get character set form */
  522. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid *)&outcol->charset_form, (ub4 *)0, OCI_ATTR_CHARSET_FORM, statement->err));
  523. if (errstatus != OCI_SUCCESS) {
  524. PHP_OCI_CALL(OCIDescriptorFree, (param, OCI_DTYPE_PARAM));
  525. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  526. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  527. return 1;
  528. }
  529. /* get character set id */
  530. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid *)&outcol->charset_id, (ub4 *)0, OCI_ATTR_CHARSET_ID, statement->err));
  531. if (errstatus != OCI_SUCCESS) {
  532. PHP_OCI_CALL(OCIDescriptorFree, (param, OCI_DTYPE_PARAM));
  533. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  534. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  535. return 1;
  536. }
  537. /* get size of the column */
  538. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid *)&outcol->data_size, (dvoid *)0, OCI_ATTR_DATA_SIZE, statement->err));
  539. if (errstatus != OCI_SUCCESS) {
  540. PHP_OCI_CALL(OCIDescriptorFree, (param, OCI_DTYPE_PARAM));
  541. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  542. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  543. return 1;
  544. }
  545. outcol->storage_size4 = outcol->data_size;
  546. outcol->retlen = outcol->data_size;
  547. /* get scale of the column */
  548. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid *)&outcol->scale, (dvoid *)0, OCI_ATTR_SCALE, statement->err));
  549. if (errstatus != OCI_SUCCESS) {
  550. PHP_OCI_CALL(OCIDescriptorFree, (param, OCI_DTYPE_PARAM));
  551. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  552. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  553. return 1;
  554. }
  555. /* get precision of the column */
  556. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid *)&outcol->precision, (dvoid *)0, OCI_ATTR_PRECISION, statement->err));
  557. if (errstatus != OCI_SUCCESS) {
  558. PHP_OCI_CALL(OCIDescriptorFree, (param, OCI_DTYPE_PARAM));
  559. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  560. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  561. return 1;
  562. }
  563. /* get name of the column */
  564. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid **)&colname, (ub4 *)&outcol->name_len, (ub4)OCI_ATTR_NAME, statement->err));
  565. if (errstatus != OCI_SUCCESS) {
  566. PHP_OCI_CALL(OCIDescriptorFree, (param, OCI_DTYPE_PARAM));
  567. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  568. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  569. return 1;
  570. }
  571. PHP_OCI_CALL(OCIDescriptorFree, (param, OCI_DTYPE_PARAM));
  572. outcol->name = estrndup((char*) colname, outcol->name_len);
  573. /* find a user-set define */
  574. if (statement->defines) {
  575. if (zend_hash_find(statement->defines,outcol->name,outcol->name_len,(void **) &outcol->define) == SUCCESS) {
  576. if (outcol->define->type) {
  577. outcol->data_type = outcol->define->type;
  578. }
  579. }
  580. }
  581. buf = 0;
  582. switch (outcol->data_type) {
  583. case SQLT_RSET:
  584. outcol->statement = statement; /* parent handle */
  585. define_type = SQLT_RSET;
  586. outcol->is_cursor = 1;
  587. outcol->statement->has_descr = 1;
  588. outcol->storage_size4 = -1;
  589. outcol->retlen = -1;
  590. dynamic = OCI_DYNAMIC_FETCH;
  591. break;
  592. case SQLT_RDD: /* ROWID */
  593. case SQLT_BLOB: /* binary LOB */
  594. case SQLT_CLOB: /* character LOB */
  595. case SQLT_BFILE: /* binary file LOB */
  596. outcol->statement = statement; /* parent handle */
  597. define_type = outcol->data_type;
  598. outcol->is_descr = 1;
  599. outcol->statement->has_descr = 1;
  600. outcol->storage_size4 = -1;
  601. outcol->chunk_size = 0;
  602. dynamic = OCI_DYNAMIC_FETCH;
  603. break;
  604. case SQLT_LNG:
  605. case SQLT_LBI:
  606. if (outcol->data_type == SQLT_LBI) {
  607. define_type = SQLT_BIN;
  608. } else {
  609. define_type = SQLT_CHR;
  610. }
  611. outcol->storage_size4 = PHP_OCI_MAX_DATA_SIZE;
  612. outcol->piecewise = 1;
  613. dynamic = OCI_DYNAMIC_FETCH;
  614. break;
  615. case SQLT_BIN:
  616. default:
  617. define_type = SQLT_CHR;
  618. if (outcol->data_type == SQLT_BIN) {
  619. define_type = SQLT_BIN;
  620. }
  621. if ((outcol->data_type == SQLT_DAT) || (outcol->data_type == SQLT_NUM)
  622. #ifdef SQLT_TIMESTAMP
  623. || (outcol->data_type == SQLT_TIMESTAMP)
  624. #endif
  625. #ifdef SQLT_TIMESTAMP_TZ
  626. || (outcol->data_type == SQLT_TIMESTAMP_TZ)
  627. #endif
  628. #ifdef SQLT_TIMESTAMP_LTZ
  629. || (outcol->data_type == SQLT_TIMESTAMP_LTZ)
  630. #endif
  631. #ifdef SQLT_INTERVAL_YM
  632. || (outcol->data_type == SQLT_INTERVAL_YM)
  633. #endif
  634. #ifdef SQLT_INTERVAL_DS
  635. || (outcol->data_type == SQLT_INTERVAL_DS)
  636. #endif
  637. ) {
  638. outcol->storage_size4 = 512; /* XXX this should fit "most" NLS date-formats and Numbers */
  639. #if defined(SQLT_IBFLOAT) && defined(SQLT_IBDOUBLE)
  640. } else if (outcol->data_type == SQLT_IBFLOAT || outcol->data_type == SQLT_IBDOUBLE) {
  641. outcol->storage_size4 = 1024;
  642. #endif
  643. } else {
  644. outcol->storage_size4++; /* add one for string terminator */
  645. }
  646. outcol->storage_size4 *= 3;
  647. dynamic = OCI_DEFAULT;
  648. buf = outcol->data = (text *) safe_emalloc(1, outcol->storage_size4, 0);
  649. memset(buf, 0, outcol->storage_size4);
  650. break;
  651. }
  652. if (dynamic == OCI_DYNAMIC_FETCH) {
  653. PHP_OCI_CALL_RETURN(errstatus,
  654. OCIDefineByPos,
  655. (
  656. statement->stmt, /* IN/OUT handle to the requested SQL query */
  657. (OCIDefine **)&outcol->oci_define, /* IN/OUT pointer to a pointer to a define handle */
  658. statement->err, /* IN/OUT An error handle */
  659. counter, /* IN position in the select list */
  660. (dvoid *)NULL, /* IN/OUT pointer to a buffer */
  661. outcol->storage_size4, /* IN The size of each valuep buffer in bytes */
  662. define_type, /* IN The data type */
  663. (dvoid *)&outcol->indicator, /* IN pointer to an indicator variable or arr */
  664. (ub2 *)NULL, /* IN/OUT Pointer to array of length of data fetched */
  665. (ub2 *)NULL, /* OUT Pointer to array of column-level return codes */
  666. OCI_DYNAMIC_FETCH /* IN mode (OCI_DEFAULT, OCI_DYNAMIC_FETCH) */
  667. )
  668. );
  669. } else {
  670. PHP_OCI_CALL_RETURN(errstatus,
  671. OCIDefineByPos,
  672. (
  673. statement->stmt, /* IN/OUT handle to the requested SQL query */
  674. (OCIDefine **)&outcol->oci_define, /* IN/OUT pointer to a pointer to a define handle */
  675. statement->err, /* IN/OUT An error handle */
  676. counter, /* IN position in the select list */
  677. (dvoid *)buf, /* IN/OUT pointer to a buffer */
  678. outcol->storage_size4, /* IN The size of each valuep buffer in bytes */
  679. define_type, /* IN The data type */
  680. (dvoid *)&outcol->indicator, /* IN pointer to an indicator variable or arr */
  681. (ub2 *)&outcol->retlen, /* IN/OUT Pointer to array of length of data fetched */
  682. (ub2 *)&outcol->retcode, /* OUT Pointer to array of column-level return codes */
  683. OCI_DEFAULT /* IN mode (OCI_DEFAULT, OCI_DYNAMIC_FETCH) */
  684. )
  685. );
  686. }
  687. if (errstatus != OCI_SUCCESS) {
  688. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  689. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  690. return 1;
  691. }
  692. /* additional OCIDefineDynamic() call */
  693. switch (outcol->data_type) {
  694. case SQLT_RSET:
  695. case SQLT_RDD:
  696. case SQLT_BLOB:
  697. case SQLT_CLOB:
  698. case SQLT_BFILE:
  699. PHP_OCI_CALL_RETURN(errstatus,
  700. OCIDefineDynamic,
  701. (
  702. outcol->oci_define,
  703. statement->err,
  704. (dvoid *)outcol,
  705. php_oci_define_callback
  706. )
  707. );
  708. if (errstatus != OCI_SUCCESS) {
  709. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  710. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  711. return 1;
  712. }
  713. break;
  714. }
  715. }
  716. statement->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  717. }
  718. return 0;
  719. }
  720. /* }}} */
  721. /* {{{ php_oci_statement_cancel()
  722. Cancel statement */
  723. int php_oci_statement_cancel(php_oci_statement *statement TSRMLS_DC)
  724. {
  725. return php_oci_statement_fetch(statement, 0 TSRMLS_CC);
  726. }
  727. /* }}} */
  728. /* {{{ php_oci_statement_free()
  729. Destroy statement handle and free associated resources */
  730. void php_oci_statement_free(php_oci_statement *statement TSRMLS_DC)
  731. {
  732. if (statement->stmt) {
  733. if (statement->last_query_len) { /* FIXME: magical */
  734. PHP_OCI_CALL(OCIStmtRelease, (statement->stmt, statement->err, NULL, 0, statement->errcode ? OCI_STRLS_CACHE_DELETE : OCI_DEFAULT));
  735. } else if (statement->impres_flag != PHP_OCI_IMPRES_IS_CHILD) { /* Oracle doc says don't free Implicit Result Set handles */
  736. PHP_OCI_CALL(OCIHandleFree, (statement->stmt, OCI_HTYPE_STMT));
  737. }
  738. statement->stmt = NULL;
  739. }
  740. if (statement->err) {
  741. PHP_OCI_CALL(OCIHandleFree, (statement->err, OCI_HTYPE_ERROR));
  742. statement->err = NULL;
  743. }
  744. if (statement->last_query) {
  745. efree(statement->last_query);
  746. }
  747. if (statement->columns) {
  748. zend_hash_destroy(statement->columns);
  749. efree(statement->columns);
  750. }
  751. if (statement->binds) {
  752. zend_hash_destroy(statement->binds);
  753. efree(statement->binds);
  754. }
  755. if (statement->defines) {
  756. zend_hash_destroy(statement->defines);
  757. efree(statement->defines);
  758. }
  759. if (statement->parent_stmtid) {
  760. zend_list_delete(statement->parent_stmtid);
  761. }
  762. zend_list_delete(statement->connection->id);
  763. efree(statement);
  764. OCI_G(num_statements)--;
  765. }
  766. /* }}} */
  767. /* {{{ php_oci_bind_pre_exec()
  768. Helper function */
  769. int php_oci_bind_pre_exec(void *data, void *result TSRMLS_DC)
  770. {
  771. php_oci_bind *bind = (php_oci_bind *) data;
  772. *(int *)result = 0;
  773. if (Z_TYPE_P(bind->zval) == IS_ARRAY) {
  774. /* These checks are currently valid for oci_bind_by_name, not
  775. * oci_bind_array_by_name. Also bind->type and
  776. * bind->indicator are not used for oci_bind_array_by_name.
  777. */
  778. return 0;
  779. }
  780. switch (bind->type) {
  781. case SQLT_NTY:
  782. case SQLT_BFILEE:
  783. case SQLT_CFILEE:
  784. case SQLT_CLOB:
  785. case SQLT_BLOB:
  786. case SQLT_RDD:
  787. if (Z_TYPE_P(bind->zval) != IS_OBJECT) {
  788. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid variable used for bind");
  789. *(int *)result = 1;
  790. }
  791. break;
  792. case SQLT_CHR:
  793. case SQLT_AFC:
  794. case SQLT_INT:
  795. case SQLT_NUM:
  796. #if defined(OCI_MAJOR_VERSION) && OCI_MAJOR_VERSION >= 12
  797. case SQLT_BOL:
  798. #endif
  799. case SQLT_LBI:
  800. case SQLT_BIN:
  801. case SQLT_LNG:
  802. if (Z_TYPE_P(bind->zval) == IS_RESOURCE || Z_TYPE_P(bind->zval) == IS_OBJECT) {
  803. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid variable used for bind");
  804. *(int *)result = 1;
  805. }
  806. break;
  807. case SQLT_RSET:
  808. if (Z_TYPE_P(bind->zval) != IS_RESOURCE) {
  809. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid variable used for bind");
  810. *(int *)result = 1;
  811. }
  812. break;
  813. }
  814. /* reset all bind stuff to a normal state... */
  815. bind->indicator = 0;
  816. return 0;
  817. }
  818. /* }}} */
  819. /* {{{ php_oci_bind_post_exec()
  820. Helper function */
  821. int php_oci_bind_post_exec(void *data TSRMLS_DC)
  822. {
  823. php_oci_bind *bind = (php_oci_bind *) data;
  824. php_oci_connection *connection = bind->parent_statement->connection;
  825. sword errstatus;
  826. if (bind->indicator == -1) { /* NULL */
  827. zval *val = bind->zval;
  828. if (Z_TYPE_P(val) == IS_STRING) {
  829. *Z_STRVAL_P(val) = '\0'; /* XXX avoid warning in debug mode */
  830. }
  831. zval_dtor(val);
  832. ZVAL_NULL(val);
  833. } else if (Z_TYPE_P(bind->zval) == IS_STRING
  834. && Z_STRLEN_P(bind->zval) > 0
  835. && Z_STRVAL_P(bind->zval)[ Z_STRLEN_P(bind->zval) ] != '\0') {
  836. /* The post- PHP 5.3 feature for "interned" strings disallows
  837. * their reallocation but (i) any IN binds either interned or
  838. * not should already be null terminated and (ii) for OUT
  839. * binds, php_oci_bind_out_callback() should have allocated a
  840. * new string that we can modify here.
  841. */
  842. Z_STRVAL_P(bind->zval) = erealloc(Z_STRVAL_P(bind->zval), Z_STRLEN_P(bind->zval)+1);
  843. Z_STRVAL_P(bind->zval)[ Z_STRLEN_P(bind->zval) ] = '\0';
  844. } else if (Z_TYPE_P(bind->zval) == IS_ARRAY) {
  845. int i;
  846. zval **entry;
  847. HashTable *hash = HASH_OF(bind->zval);
  848. zend_hash_internal_pointer_reset(hash);
  849. switch (bind->array.type) {
  850. case SQLT_NUM:
  851. case SQLT_INT:
  852. case SQLT_LNG:
  853. for (i = 0; i < bind->array.current_length; i++) {
  854. if ((i < bind->array.old_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) {
  855. zval_dtor(*entry);
  856. ZVAL_LONG(*entry, ((ub4 *)(bind->array.elements))[i]);
  857. zend_hash_move_forward(hash);
  858. } else {
  859. add_next_index_long(bind->zval, ((ub4 *)(bind->array.elements))[i]);
  860. }
  861. }
  862. break;
  863. case SQLT_FLT:
  864. for (i = 0; i < bind->array.current_length; i++) {
  865. if ((i < bind->array.old_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) {
  866. zval_dtor(*entry);
  867. ZVAL_DOUBLE(*entry, ((double *)(bind->array.elements))[i]);
  868. zend_hash_move_forward(hash);
  869. } else {
  870. add_next_index_double(bind->zval, ((double *)(bind->array.elements))[i]);
  871. }
  872. }
  873. break;
  874. case SQLT_ODT:
  875. for (i = 0; i < bind->array.current_length; i++) {
  876. oratext buff[1024];
  877. ub4 buff_len = 1024;
  878. memset((void*)buff,0,sizeof(buff));
  879. if ((i < bind->array.old_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) {
  880. PHP_OCI_CALL_RETURN(errstatus, OCIDateToText, (connection->err, &(((OCIDate *)(bind->array.elements))[i]), 0, 0, 0, 0, &buff_len, buff));
  881. zval_dtor(*entry);
  882. if (errstatus != OCI_SUCCESS) {
  883. connection->errcode = php_oci_error(connection->err, errstatus TSRMLS_CC);
  884. PHP_OCI_HANDLE_ERROR(connection, connection->errcode);
  885. ZVAL_NULL(*entry);
  886. } else {
  887. connection->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  888. ZVAL_STRINGL(*entry, (char *)buff, buff_len, 1);
  889. }
  890. zend_hash_move_forward(hash);
  891. } else {
  892. PHP_OCI_CALL_RETURN(errstatus, OCIDateToText, (connection->err, &(((OCIDate *)(bind->array.elements))[i]), 0, 0, 0, 0, &buff_len, buff));
  893. if (errstatus != OCI_SUCCESS) {
  894. connection->errcode = php_oci_error(connection->err, errstatus TSRMLS_CC);
  895. PHP_OCI_HANDLE_ERROR(connection, connection->errcode);
  896. add_next_index_null(bind->zval);
  897. } else {
  898. connection->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  899. add_next_index_stringl(bind->zval, (char *)buff, buff_len, 1);
  900. }
  901. }
  902. }
  903. break;
  904. case SQLT_AFC:
  905. case SQLT_CHR:
  906. case SQLT_VCS:
  907. case SQLT_AVC:
  908. case SQLT_STR:
  909. case SQLT_LVC:
  910. for (i = 0; i < bind->array.current_length; i++) {
  911. /* int curr_element_length = strlen(((text *)bind->array.elements)+i*bind->array.max_length); */
  912. int curr_element_length = bind->array.element_lengths[i];
  913. if ((i < bind->array.old_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) {
  914. zval_dtor(*entry);
  915. ZVAL_STRINGL(*entry, (char *)(((text *)bind->array.elements)+i*bind->array.max_length), curr_element_length, 1);
  916. zend_hash_move_forward(hash);
  917. } else {
  918. add_next_index_stringl(bind->zval, (char *)(((text *)bind->array.elements)+i*bind->array.max_length), curr_element_length, 1);
  919. }
  920. }
  921. break;
  922. }
  923. }
  924. return 0;
  925. }
  926. /* }}} */
  927. /* {{{ php_oci_bind_by_name()
  928. Bind zval to the given placeholder */
  929. int php_oci_bind_by_name(php_oci_statement *statement, char *name, int name_len, zval *var, long maxlength, ub2 type TSRMLS_DC)
  930. {
  931. php_oci_collection *bind_collection = NULL;
  932. php_oci_descriptor *bind_descriptor = NULL;
  933. php_oci_statement *bind_statement = NULL;
  934. dvoid *oci_desc = NULL;
  935. /* dvoid *php_oci_collection = NULL; */
  936. OCIStmt *oci_stmt = NULL;
  937. dvoid *bind_data = NULL;
  938. php_oci_bind bind, *old_bind, *bindp;
  939. int mode = OCI_DATA_AT_EXEC;
  940. sb4 value_sz = -1;
  941. sword errstatus;
  942. switch (type) {
  943. case SQLT_NTY:
  944. {
  945. zval **tmp;
  946. if (Z_TYPE_P(var) != IS_OBJECT || zend_hash_find(Z_OBJPROP_P(var), "collection", sizeof("collection"), (void **)&tmp) == FAILURE) {
  947. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to find collection property");
  948. return 1;
  949. }
  950. PHP_OCI_ZVAL_TO_COLLECTION_EX(*tmp, bind_collection);
  951. value_sz = sizeof(void*);
  952. mode = OCI_DEFAULT;
  953. if (!bind_collection->collection) {
  954. return 1;
  955. }
  956. }
  957. break;
  958. case SQLT_BFILEE:
  959. case SQLT_CFILEE:
  960. case SQLT_CLOB:
  961. case SQLT_BLOB:
  962. case SQLT_RDD:
  963. {
  964. zval **tmp;
  965. if (Z_TYPE_P(var) != IS_OBJECT || zend_hash_find(Z_OBJPROP_P(var), "descriptor", sizeof("descriptor"), (void **)&tmp) == FAILURE) {
  966. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to find descriptor property");
  967. return 1;
  968. }
  969. PHP_OCI_ZVAL_TO_DESCRIPTOR_EX(*tmp, bind_descriptor);
  970. value_sz = sizeof(void*);
  971. oci_desc = bind_descriptor->descriptor;
  972. if (!oci_desc) {
  973. return 1;
  974. }
  975. }
  976. break;
  977. case SQLT_INT:
  978. case SQLT_NUM:
  979. {
  980. if (Z_TYPE_P(var) == IS_RESOURCE || Z_TYPE_P(var) == IS_OBJECT) {
  981. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid variable used for bind");
  982. return 1;
  983. }
  984. convert_to_long(var);
  985. #if defined(OCI_MAJOR_VERSION) && (OCI_MAJOR_VERSION > 10) && \
  986. (defined(__x86_64__) || defined(__LP64__) || defined(_LP64) || defined(_WIN64))
  987. bind_data = (ub8 *)&Z_LVAL_P(var);
  988. value_sz = sizeof(ub8);
  989. #else
  990. bind_data = (ub4 *)&Z_LVAL_P(var);
  991. value_sz = sizeof(ub4);
  992. #endif
  993. mode = OCI_DEFAULT;
  994. }
  995. break;
  996. case SQLT_LBI:
  997. case SQLT_BIN:
  998. case SQLT_LNG:
  999. case SQLT_AFC:
  1000. case SQLT_CHR: /* SQLT_CHR is the default value when type was not specified */
  1001. if (Z_TYPE_P(var) == IS_RESOURCE || Z_TYPE_P(var) == IS_OBJECT) {
  1002. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid variable used for bind");
  1003. return 1;
  1004. }
  1005. if (Z_TYPE_P(var) != IS_NULL) {
  1006. convert_to_string(var);
  1007. }
  1008. if (maxlength == -1) {
  1009. value_sz = (Z_TYPE_P(var) == IS_STRING) ? Z_STRLEN_P(var) : 0;
  1010. } else {
  1011. value_sz = maxlength;
  1012. }
  1013. break;
  1014. case SQLT_RSET:
  1015. if (Z_TYPE_P(var) != IS_RESOURCE) {
  1016. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid variable used for bind");
  1017. return 1;
  1018. }
  1019. PHP_OCI_ZVAL_TO_STATEMENT_EX(var, bind_statement);
  1020. value_sz = sizeof(void*);
  1021. oci_stmt = bind_statement->stmt;
  1022. if (!oci_stmt) {
  1023. return 1;
  1024. }
  1025. break;
  1026. #if defined(OCI_MAJOR_VERSION) && OCI_MAJOR_VERSION >= 12
  1027. case SQLT_BOL:
  1028. if (Z_TYPE_P(var) == IS_RESOURCE || Z_TYPE_P(var) == IS_OBJECT) {
  1029. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid variable used for bind");
  1030. return 1;
  1031. }
  1032. convert_to_boolean(var);
  1033. bind_data = (int *)&Z_LVAL_P(var);
  1034. value_sz = sizeof(int);
  1035. mode = OCI_DEFAULT;
  1036. break;
  1037. #endif
  1038. default:
  1039. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown or unsupported datatype given: %d", (int)type);
  1040. return 1;
  1041. break;
  1042. }
  1043. if (value_sz == 0) {
  1044. value_sz = 1;
  1045. }
  1046. if (!statement->binds) {
  1047. ALLOC_HASHTABLE(statement->binds);
  1048. zend_hash_init(statement->binds, 13, NULL, php_oci_bind_hash_dtor, 0);
  1049. }
  1050. memset((void*)&bind,0,sizeof(php_oci_bind));
  1051. if (zend_hash_find(statement->binds, name, name_len + 1, (void **)&old_bind) == SUCCESS) {
  1052. bindp = old_bind;
  1053. if (bindp->zval) {
  1054. zval_ptr_dtor(&bindp->zval);
  1055. }
  1056. } else {
  1057. zend_hash_update(statement->binds, name, name_len + 1, &bind, sizeof(php_oci_bind), (void **)&bindp);
  1058. }
  1059. bindp->descriptor = oci_desc;
  1060. bindp->statement = oci_stmt;
  1061. bindp->parent_statement = statement;
  1062. bindp->zval = var;
  1063. bindp->type = type;
  1064. zval_add_ref(&var);
  1065. PHP_OCI_CALL_RETURN(errstatus,
  1066. OCIBindByName,
  1067. (
  1068. statement->stmt, /* statement handle */
  1069. (OCIBind **)&bindp->bind, /* bind hdl (will alloc) */
  1070. statement->err, /* error handle */
  1071. (text*) name, /* placeholder name */
  1072. name_len, /* placeholder length */
  1073. (dvoid *)bind_data, /* in/out data */
  1074. value_sz, /* PHP_OCI_MAX_DATA_SIZE, */ /* max size of input/output data */
  1075. type, /* in/out data type */
  1076. (dvoid *)&bindp->indicator, /* indicator (ignored) */
  1077. (ub2 *)0, /* size array (ignored) */
  1078. (ub2 *)&bindp->retcode, /* return code (ignored) */
  1079. (ub4)0, /* maxarr_len (PL/SQL only?) */
  1080. (ub4 *)0, /* actual array size (PL/SQL only?) */
  1081. mode /* mode */
  1082. )
  1083. );
  1084. if (errstatus != OCI_SUCCESS) {
  1085. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  1086. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  1087. return 1;
  1088. }
  1089. if (mode == OCI_DATA_AT_EXEC) {
  1090. PHP_OCI_CALL_RETURN(errstatus, OCIBindDynamic,
  1091. (
  1092. bindp->bind,
  1093. statement->err,
  1094. (dvoid *)bindp,
  1095. php_oci_bind_in_callback,
  1096. (dvoid *)bindp,
  1097. php_oci_bind_out_callback
  1098. )
  1099. );
  1100. if (errstatus != OCI_SUCCESS) {
  1101. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  1102. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  1103. return 1;
  1104. }
  1105. }
  1106. if (type == SQLT_NTY) {
  1107. /* Bind object */
  1108. PHP_OCI_CALL_RETURN(errstatus, OCIBindObject,
  1109. (
  1110. bindp->bind,
  1111. statement->err,
  1112. bind_collection->tdo,
  1113. (dvoid **) &(bind_collection->collection),
  1114. (ub4 *) 0,
  1115. (dvoid **) 0,
  1116. (ub4 *) 0
  1117. )
  1118. );
  1119. if (errstatus) {
  1120. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  1121. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  1122. return 1;
  1123. }
  1124. }
  1125. statement->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  1126. return 0;
  1127. }
  1128. /* }}} */
  1129. /* {{{ php_oci_bind_in_callback()
  1130. Callback used when binding LOBs and VARCHARs */
  1131. sb4 php_oci_bind_in_callback(
  1132. dvoid *ictxp, /* context pointer */
  1133. OCIBind *bindp, /* bind handle */
  1134. ub4 iter, /* 0-based execute iteration value */
  1135. ub4 index, /* index of current array for PL/SQL or row index for SQL */
  1136. dvoid **bufpp, /* pointer to data */
  1137. ub4 *alenp, /* size after value/piece has been read */
  1138. ub1 *piecep, /* which piece */
  1139. dvoid **indpp) /* indicator value */
  1140. {
  1141. php_oci_bind *phpbind;
  1142. zval *val;
  1143. TSRMLS_FETCH();
  1144. if (!(phpbind=(php_oci_bind *)ictxp) || !(val = phpbind->zval)) {
  1145. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid phpbind pointer value");
  1146. return OCI_ERROR;
  1147. }
  1148. if (ZVAL_IS_NULL(val)) {
  1149. /* we're going to insert a NULL column */
  1150. phpbind->indicator = -1;
  1151. *bufpp = 0;
  1152. *alenp = -1;
  1153. *indpp = (dvoid *)&phpbind->indicator;
  1154. } else if ((phpbind->descriptor == 0) && (phpbind->statement == 0)) {
  1155. /* "normal string bind */
  1156. convert_to_string(val);
  1157. *bufpp = Z_STRVAL_P(val);
  1158. *alenp = Z_STRLEN_P(val);
  1159. *indpp = (dvoid *)&phpbind->indicator;
  1160. } else if (phpbind->statement != 0) {
  1161. /* RSET */
  1162. *bufpp = phpbind->statement;
  1163. *alenp = -1; /* seems to be allright */
  1164. *indpp = (dvoid *)&phpbind->indicator;
  1165. } else {
  1166. /* descriptor bind */
  1167. *bufpp = phpbind->descriptor;
  1168. *alenp = -1; /* seems to be allright */
  1169. *indpp = (dvoid *)&phpbind->indicator;
  1170. }
  1171. *piecep = OCI_ONE_PIECE; /* pass all data in one go */
  1172. return OCI_CONTINUE;
  1173. }
  1174. /* }}} */
  1175. /* {{{ php_oci_bind_out_callback()
  1176. Callback used when binding LOBs and VARCHARs */
  1177. sb4 php_oci_bind_out_callback(
  1178. dvoid *octxp, /* context pointer */
  1179. OCIBind *bindp, /* bind handle */
  1180. ub4 iter, /* 0-based execute iteration value */
  1181. ub4 index, /* index of current array for PL/SQL or row index for SQL */
  1182. dvoid **bufpp, /* pointer to data */
  1183. ub4 **alenpp, /* size after value/piece has been read */
  1184. ub1 *piecep, /* which piece */
  1185. dvoid **indpp, /* indicator value */
  1186. ub2 **rcodepp) /* return code */
  1187. {
  1188. php_oci_bind *phpbind;
  1189. zval *val;
  1190. sb4 retval = OCI_ERROR;
  1191. TSRMLS_FETCH();
  1192. if (!(phpbind=(php_oci_bind *)octxp) || !(val = phpbind->zval)) {
  1193. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid phpbind pointer value");
  1194. return retval;
  1195. }
  1196. if (Z_TYPE_P(val) == IS_RESOURCE) {
  1197. /* Processing for ref-cursor out binds */
  1198. if (phpbind->statement != NULL) {
  1199. *bufpp = phpbind->statement;
  1200. *alenpp = &phpbind->dummy_len;
  1201. *piecep = OCI_ONE_PIECE;
  1202. *rcodepp = &phpbind->retcode;
  1203. *indpp = &phpbind->indicator;
  1204. }
  1205. retval = OCI_CONTINUE;
  1206. } else if (Z_TYPE_P(val) == IS_OBJECT) {
  1207. zval **tmp;
  1208. php_oci_descriptor *desc;
  1209. if (!phpbind->descriptor) {
  1210. return OCI_ERROR;
  1211. }
  1212. /* Do not use the cached lob size if the descriptor is an
  1213. * out-bind as the contents would have been changed for in/out
  1214. * binds (Bug #46994).
  1215. */
  1216. if (zend_hash_find(Z_OBJPROP_P(val), "descriptor", sizeof("descriptor"), (void **)&tmp) == FAILURE) {
  1217. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to find object outbind descriptor property");
  1218. return OCI_ERROR;
  1219. }
  1220. PHP_OCI_ZVAL_TO_DESCRIPTOR_EX(*tmp, desc);
  1221. desc->lob_size = -1; /* force OCI8 to update cached size */
  1222. *alenpp = &phpbind->dummy_len;
  1223. *bufpp = phpbind->descriptor;
  1224. *piecep = OCI_ONE_PIECE;
  1225. *rcodepp = &phpbind->retcode;
  1226. *indpp = &phpbind->indicator;
  1227. retval = OCI_CONTINUE;
  1228. } else {
  1229. convert_to_string(val);
  1230. zval_dtor(val);
  1231. Z_STRLEN_P(val) = PHP_OCI_PIECE_SIZE; /* 64K-1 is max XXX */
  1232. Z_STRVAL_P(val) = ecalloc(1, Z_STRLEN_P(phpbind->zval) + 1);
  1233. /* XXX we assume that zend-zval len has 4 bytes */
  1234. *alenpp = (ub4*) &Z_STRLEN_P(phpbind->zval);
  1235. *bufpp = Z_STRVAL_P(phpbind->zval);
  1236. *piecep = OCI_ONE_PIECE;
  1237. *rcodepp = &phpbind->retcode;
  1238. *indpp = &phpbind->indicator;
  1239. retval = OCI_CONTINUE;
  1240. }
  1241. return retval;
  1242. }
  1243. /* }}} */
  1244. /* {{{ php_oci_statement_get_column_helper()
  1245. Helper function to get column by name and index */
  1246. php_oci_out_column *php_oci_statement_get_column_helper(INTERNAL_FUNCTION_PARAMETERS, int need_data)
  1247. {
  1248. zval *z_statement, *column_index;
  1249. php_oci_statement *statement;
  1250. php_oci_out_column *column;
  1251. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rz", &z_statement, &column_index) == FAILURE) {
  1252. return NULL;
  1253. }
  1254. statement = (php_oci_statement *) zend_fetch_resource(&z_statement TSRMLS_CC, -1, "oci8 statement", NULL, 1, le_statement);
  1255. if (!statement) {
  1256. return NULL;
  1257. }
  1258. if (need_data && !statement->has_data) {
  1259. return NULL;
  1260. }
  1261. if (Z_TYPE_P(column_index) == IS_STRING) {
  1262. column = php_oci_statement_get_column(statement, -1, Z_STRVAL_P(column_index), Z_STRLEN_P(column_index) TSRMLS_CC);
  1263. if (!column) {
  1264. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid column name \"%s\"", Z_STRVAL_P(column_index));
  1265. return NULL;
  1266. }
  1267. } else {
  1268. zval tmp;
  1269. /* NB: for PHP4 compat only, it should be using 'Z' instead */
  1270. tmp = *column_index;
  1271. zval_copy_ctor(&tmp);
  1272. convert_to_long(&tmp);
  1273. column = php_oci_statement_get_column(statement, Z_LVAL(tmp), NULL, 0 TSRMLS_CC);
  1274. if (!column) {
  1275. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid column index \"%ld\"", Z_LVAL(tmp));
  1276. zval_dtor(&tmp);
  1277. return NULL;
  1278. }
  1279. zval_dtor(&tmp);
  1280. }
  1281. return column;
  1282. }
  1283. /* }}} */
  1284. /* {{{ php_oci_statement_get_type()
  1285. Return type of the statement */
  1286. int php_oci_statement_get_type(php_oci_statement *statement, ub2 *type TSRMLS_DC)
  1287. {
  1288. ub2 statement_type;
  1289. sword errstatus;
  1290. *type = 0;
  1291. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (ub2 *)&statement_type, (ub4 *)0, OCI_ATTR_STMT_TYPE, statement->err));
  1292. if (errstatus != OCI_SUCCESS) {
  1293. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  1294. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  1295. return 1;
  1296. }
  1297. statement->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  1298. *type = statement_type;
  1299. return 0;
  1300. }
  1301. /* }}} */
  1302. /* {{{ php_oci_statement_get_numrows()
  1303. Get the number of rows fetched to the clientside (NOT the number of rows in the result set) */
  1304. int php_oci_statement_get_numrows(php_oci_statement *statement, ub4 *numrows TSRMLS_DC)
  1305. {
  1306. ub4 statement_numrows;
  1307. sword errstatus;
  1308. *numrows = 0;
  1309. PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (ub4 *)&statement_numrows, (ub4 *)0, OCI_ATTR_ROW_COUNT, statement->err));
  1310. if (errstatus != OCI_SUCCESS) {
  1311. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  1312. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  1313. return 1;
  1314. }
  1315. statement->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  1316. *numrows = statement_numrows;
  1317. return 0;
  1318. }
  1319. /* }}} */
  1320. /* {{{ php_oci_bind_array_by_name()
  1321. Bind arrays to PL/SQL types */
  1322. int php_oci_bind_array_by_name(php_oci_statement *statement, char *name, int name_len, zval *var, long max_table_length, long maxlength, long type TSRMLS_DC)
  1323. {
  1324. php_oci_bind *bind, *bindp;
  1325. sword errstatus;
  1326. convert_to_array(var);
  1327. if (maxlength < -1) {
  1328. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid max length value (%ld)", maxlength);
  1329. return 1;
  1330. }
  1331. switch(type) {
  1332. case SQLT_NUM:
  1333. case SQLT_INT:
  1334. case SQLT_LNG:
  1335. bind = php_oci_bind_array_helper_number(var, max_table_length TSRMLS_CC);
  1336. break;
  1337. case SQLT_FLT:
  1338. bind = php_oci_bind_array_helper_double(var, max_table_length TSRMLS_CC);
  1339. break;
  1340. case SQLT_AFC:
  1341. case SQLT_CHR:
  1342. case SQLT_VCS:
  1343. case SQLT_AVC:
  1344. case SQLT_STR:
  1345. case SQLT_LVC:
  1346. if (maxlength == -1 && zend_hash_num_elements(Z_ARRVAL_P(var)) == 0) {
  1347. php_error_docref(NULL TSRMLS_CC, E_WARNING, "You must provide max length value for empty arrays");
  1348. return 1;
  1349. }
  1350. bind = php_oci_bind_array_helper_string(var, max_table_length, maxlength TSRMLS_CC);
  1351. break;
  1352. case SQLT_ODT:
  1353. bind = php_oci_bind_array_helper_date(var, max_table_length, statement->connection TSRMLS_CC);
  1354. break;
  1355. default:
  1356. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown or unsupported datatype given: %ld", type);
  1357. return 1;
  1358. break;
  1359. }
  1360. if (bind == NULL) {
  1361. /* failed to generate bind struct */
  1362. return 1;
  1363. }
  1364. if (!statement->binds) {
  1365. ALLOC_HASHTABLE(statement->binds);
  1366. zend_hash_init(statement->binds, 13, NULL, php_oci_bind_hash_dtor, 0);
  1367. }
  1368. zend_hash_update(statement->binds, name, name_len + 1, bind, sizeof(php_oci_bind), (void **)&bindp);
  1369. bindp->descriptor = NULL;
  1370. bindp->statement = NULL;
  1371. bindp->parent_statement = statement;
  1372. bindp->bind = NULL;
  1373. bindp->zval = var;
  1374. bindp->array.type = type;
  1375. bindp->indicator = 0; /* not used for array binds */
  1376. bindp->type = 0; /* not used for array binds */
  1377. zval_add_ref(&var);
  1378. PHP_OCI_CALL_RETURN(errstatus,
  1379. OCIBindByName,
  1380. (
  1381. statement->stmt,
  1382. (OCIBind **)&bindp->bind,
  1383. statement->err,
  1384. (text *)name,
  1385. name_len,
  1386. (dvoid *) bindp->array.elements,
  1387. (sb4) bind->array.max_length,
  1388. (ub2)type,
  1389. (dvoid *)bindp->array.indicators,
  1390. (ub2 *)bind->array.element_lengths,
  1391. (ub2 *)0, /* bindp->array.retcodes, */
  1392. (ub4) max_table_length,
  1393. (ub4 *) &(bindp->array.current_length),
  1394. (ub4) OCI_DEFAULT
  1395. )
  1396. );
  1397. if (errstatus != OCI_SUCCESS) {
  1398. efree(bind);
  1399. statement->errcode = php_oci_error(statement->err, errstatus TSRMLS_CC);
  1400. PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode);
  1401. return 1;
  1402. }
  1403. statement->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  1404. efree(bind);
  1405. return 0;
  1406. }
  1407. /* }}} */
  1408. /* {{{ php_oci_bind_array_helper_string()
  1409. Bind arrays to PL/SQL types */
  1410. php_oci_bind *php_oci_bind_array_helper_string(zval *var, long max_table_length, long maxlength TSRMLS_DC)
  1411. {
  1412. php_oci_bind *bind;
  1413. ub4 i;
  1414. HashTable *hash;
  1415. zval **entry;
  1416. hash = HASH_OF(var);
  1417. if (maxlength == -1) {
  1418. zend_hash_internal_pointer_reset(hash);
  1419. while (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE) {
  1420. convert_to_string_ex(entry);
  1421. if (Z_STRLEN_PP(entry) > maxlength) {
  1422. maxlength = Z_STRLEN_PP(entry) + 1;
  1423. }
  1424. zend_hash_move_forward(hash);
  1425. }
  1426. }
  1427. bind = emalloc(sizeof(php_oci_bind));
  1428. bind->array.elements = (text *)safe_emalloc(max_table_length * (maxlength + 1), sizeof(text), 0);
  1429. memset(bind->array.elements, 0, max_table_length * (maxlength + 1) * sizeof(text));
  1430. bind->array.current_length = zend_hash_num_elements(Z_ARRVAL_P(var));
  1431. bind->array.old_length = bind->array.current_length;
  1432. bind->array.max_length = maxlength;
  1433. bind->array.element_lengths = safe_emalloc(max_table_length, sizeof(ub2), 0);
  1434. memset(bind->array.element_lengths, 0, max_table_length*sizeof(ub2));
  1435. bind->array.indicators = safe_emalloc(max_table_length, sizeof(sb2), 0);
  1436. memset(bind->array.indicators, 0, max_table_length*sizeof(sb2));
  1437. zend_hash_internal_pointer_reset(hash);
  1438. for (i = 0; i < bind->array.current_length; i++) {
  1439. if (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE) {
  1440. convert_to_string_ex(entry);
  1441. bind->array.element_lengths[i] = Z_STRLEN_PP(entry);
  1442. if (Z_STRLEN_PP(entry) == 0) {
  1443. bind->array.indicators[i] = -1;
  1444. }
  1445. zend_hash_move_forward(hash);
  1446. } else {
  1447. break;
  1448. }
  1449. }
  1450. zend_hash_internal_pointer_reset(hash);
  1451. for (i = 0; i < max_table_length; i++) {
  1452. if ((i < bind->array.current_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) {
  1453. int element_length;
  1454. convert_to_string_ex(entry);
  1455. element_length = (maxlength > Z_STRLEN_PP(entry)) ? Z_STRLEN_PP(entry) : maxlength;
  1456. memcpy((text *)bind->array.elements + i*maxlength, Z_STRVAL_PP(entry), element_length);
  1457. ((text *)bind->array.elements)[i*maxlength + element_length] = '\0';
  1458. zend_hash_move_forward(hash);
  1459. } else {
  1460. ((text *)bind->array.elements)[i*maxlength] = '\0';
  1461. }
  1462. }
  1463. zend_hash_internal_pointer_reset(hash);
  1464. return bind;
  1465. }
  1466. /* }}} */
  1467. /* {{{ php_oci_bind_array_helper_number()
  1468. Bind arrays to PL/SQL types */
  1469. php_oci_bind *php_oci_bind_array_helper_number(zval *var, long max_table_length TSRMLS_DC)
  1470. {
  1471. php_oci_bind *bind;
  1472. ub4 i;
  1473. HashTable *hash;
  1474. zval **entry;
  1475. hash = HASH_OF(var);
  1476. bind = emalloc(sizeof(php_oci_bind));
  1477. bind->array.elements = (ub4 *)safe_emalloc(max_table_length, sizeof(ub4), 0);
  1478. bind->array.current_length = zend_hash_num_elements(Z_ARRVAL_P(var));
  1479. bind->array.old_length = bind->array.current_length;
  1480. bind->array.max_length = sizeof(ub4);
  1481. bind->array.element_lengths = safe_emalloc(max_table_length, sizeof(ub2), 0);
  1482. memset(bind->array.element_lengths, 0, max_table_length * sizeof(ub2));
  1483. bind->array.indicators = NULL;
  1484. zend_hash_internal_pointer_reset(hash);
  1485. for (i = 0; i < max_table_length; i++) {
  1486. if (i < bind->array.current_length) {
  1487. bind->array.element_lengths[i] = sizeof(ub4);
  1488. }
  1489. if ((i < bind->array.current_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) {
  1490. convert_to_long_ex(entry);
  1491. ((ub4 *)bind->array.elements)[i] = (ub4) Z_LVAL_PP(entry);
  1492. zend_hash_move_forward(hash);
  1493. } else {
  1494. ((ub4 *)bind->array.elements)[i] = 0;
  1495. }
  1496. }
  1497. zend_hash_internal_pointer_reset(hash);
  1498. return bind;
  1499. }
  1500. /* }}} */
  1501. /* {{{ php_oci_bind_array_helper_double()
  1502. Bind arrays to PL/SQL types */
  1503. php_oci_bind *php_oci_bind_array_helper_double(zval *var, long max_table_length TSRMLS_DC)
  1504. {
  1505. php_oci_bind *bind;
  1506. ub4 i;
  1507. HashTable *hash;
  1508. zval **entry;
  1509. hash = HASH_OF(var);
  1510. bind = emalloc(sizeof(php_oci_bind));
  1511. bind->array.elements = (double *)safe_emalloc(max_table_length, sizeof(double), 0);
  1512. bind->array.current_length = zend_hash_num_elements(Z_ARRVAL_P(var));
  1513. bind->array.old_length = bind->array.current_length;
  1514. bind->array.max_length = sizeof(double);
  1515. bind->array.element_lengths = safe_emalloc(max_table_length, sizeof(ub2), 0);
  1516. memset(bind->array.element_lengths, 0, max_table_length * sizeof(ub2));
  1517. bind->array.indicators = NULL;
  1518. zend_hash_internal_pointer_reset(hash);
  1519. for (i = 0; i < max_table_length; i++) {
  1520. if (i < bind->array.current_length) {
  1521. bind->array.element_lengths[i] = sizeof(double);
  1522. }
  1523. if ((i < bind->array.current_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) {
  1524. convert_to_double_ex(entry);
  1525. ((double *)bind->array.elements)[i] = (double) Z_DVAL_PP(entry);
  1526. zend_hash_move_forward(hash);
  1527. } else {
  1528. ((double *)bind->array.elements)[i] = 0;
  1529. }
  1530. }
  1531. zend_hash_internal_pointer_reset(hash);
  1532. return bind;
  1533. }
  1534. /* }}} */
  1535. /* {{{ php_oci_bind_array_helper_date()
  1536. Bind arrays to PL/SQL types */
  1537. php_oci_bind *php_oci_bind_array_helper_date(zval *var, long max_table_length, php_oci_connection *connection TSRMLS_DC)
  1538. {
  1539. php_oci_bind *bind;
  1540. ub4 i;
  1541. HashTable *hash;
  1542. zval **entry;
  1543. sword errstatus;
  1544. hash = HASH_OF(var);
  1545. bind = emalloc(sizeof(php_oci_bind));
  1546. bind->array.elements = (OCIDate *)safe_emalloc(max_table_length, sizeof(OCIDate), 0);
  1547. bind->array.current_length = zend_hash_num_elements(Z_ARRVAL_P(var));
  1548. bind->array.old_length = bind->array.current_length;
  1549. bind->array.max_length = sizeof(OCIDate);
  1550. bind->array.element_lengths = safe_emalloc(max_table_length, sizeof(ub2), 0);
  1551. memset(bind->array.element_lengths, 0, max_table_length * sizeof(ub2));
  1552. bind->array.indicators = NULL;
  1553. zend_hash_internal_pointer_reset(hash);
  1554. for (i = 0; i < max_table_length; i++) {
  1555. OCIDate oci_date;
  1556. if (i < bind->array.current_length) {
  1557. bind->array.element_lengths[i] = sizeof(OCIDate);
  1558. }
  1559. if ((i < bind->array.current_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) {
  1560. convert_to_string_ex(entry);
  1561. PHP_OCI_CALL_RETURN(errstatus, OCIDateFromText, (connection->err, (CONST text *)Z_STRVAL_PP(entry), Z_STRLEN_PP(entry), NULL, 0, NULL, 0, &oci_date));
  1562. if (errstatus != OCI_SUCCESS) {
  1563. /* failed to convert string to date */
  1564. efree(bind->array.element_lengths);
  1565. efree(bind->array.elements);
  1566. efree(bind);
  1567. connection->errcode = php_oci_error(connection->err, errstatus TSRMLS_CC);
  1568. PHP_OCI_HANDLE_ERROR(connection, connection->errcode);
  1569. return NULL;
  1570. }
  1571. ((OCIDate *)bind->array.elements)[i] = oci_date;
  1572. zend_hash_move_forward(hash);
  1573. } else {
  1574. PHP_OCI_CALL_RETURN(errstatus, OCIDateFromText, (connection->err, (CONST text *)"01-JAN-00", sizeof("01-JAN-00")-1, NULL, 0, NULL, 0, &oci_date));
  1575. if (errstatus != OCI_SUCCESS) {
  1576. /* failed to convert string to date */
  1577. efree(bind->array.element_lengths);
  1578. efree(bind->array.elements);
  1579. efree(bind);
  1580. connection->errcode = php_oci_error(connection->err, errstatus TSRMLS_CC);
  1581. PHP_OCI_HANDLE_ERROR(connection, connection->errcode);
  1582. return NULL;
  1583. }
  1584. ((OCIDate *)bind->array.elements)[i] = oci_date;
  1585. }
  1586. connection->errcode = 0; /* retain backwards compat with OCI8 1.4 */
  1587. }
  1588. zend_hash_internal_pointer_reset(hash);
  1589. return bind;
  1590. }
  1591. /* }}} */
  1592. #endif /* HAVE_OCI8 */
  1593. /*
  1594. * Local variables:
  1595. * tab-width: 4
  1596. * c-basic-offset: 4
  1597. * End:
  1598. * vim600: noet sw=4 ts=4 fdm=marker
  1599. * vim<600: noet sw=4 ts=4
  1600. */