Browse Source

Remove PHP5-specific code

pull/2276/merge
Adam Baratz 10 years ago
parent
commit
3985ddc495
  1. 10
      ext/pdo/pdo_stmt.c

10
ext/pdo/pdo_stmt.c

@ -223,17 +223,7 @@ int pdo_stmt_describe_columns(pdo_stmt_t *stmt) /* {{{ */
}
}
#if 0
/* update the column index on named bound parameters */
if (stmt->bound_params) {
struct pdo_bound_param_data *param;
if (SUCCESS == zend_hash_find(stmt->bound_params, stmt->columns[col].name,
stmt->columns[col].namelen, (void**)&param)) {
param->paramno = col;
}
}
#endif
if (stmt->bound_columns) {
struct pdo_bound_param_data *param;

Loading…
Cancel
Save