Lines Matching refs:params
88 HashTable *params;
154 params = stmt->bound_params;
156 /* Do we have placeholders but no bound params */
157 if (bindno && !params && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
163 …if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACE…
164 /* extra bit of validation for instances when same params are bound more then once */
165 if (query_type != PDO_PLACEHOLDER_POSITIONAL && bindno > zend_hash_num_elements(params)) {
168 if (zend_hash_find(params, plc->pos, plc->len, (void**) ¶m) == FAILURE) {
191 ret = zend_hash_index_find(params, plc->bindno, (void**) ¶m);
193 ret = zend_hash_find(params, plc->pos, plc->len, (void**) ¶m);
395 HashTable *params = stmt->bound_params;
406 if(params) {
407 zend_hash_internal_pointer_reset(params);
408 while (SUCCESS == zend_hash_get_current_data(params, (void**)¶m)) {
417 zend_hash_move_forward(params);
432 if(!params) {
440 if((SUCCESS == zend_hash_find(params, s.tok, s.cur-s.tok,(void **)¶m))
442 (SUCCESS == zend_hash_index_find(params, bindno, (void **)¶m)))
472 if(!params) {
479 if(SUCCESS == zend_hash_index_find(params, bindno, (void **)¶m))