Lines Matching refs:binds
342 if (statement->binds) { in _free_mssql_statement()
343 zend_hash_destroy(statement->binds); in _free_mssql_statement()
344 efree(statement->binds); in _free_mssql_statement()
1147 if (statement->binds != NULL) { /* Maybe a non-parameter sp */
1148 if (zend_hash_find(statement->binds, parameter, strlen(parameter), (void**)&bind)==SUCCESS) {
1190 if (statement->binds != NULL) { /* Maybe a non-parameter sp */
1191 if (zend_hash_find(statement->binds, "RETVAL", 6, (void**)&bind)==SUCCESS) {
2091 if (! statement->binds) {
2092 ALLOC_HASHTABLE(statement->binds);
2093 zend_hash_init(statement->binds, 13, NULL, _mssql_bind_hash_dtor, 0);
2096 if (zend_hash_exists(statement->binds, param_name, param_name_len)) {
2101 …zend_hash_add(statement->binds, param_name, param_name_len, &bind, sizeof(mssql_bind), (void **)&b…