sqlany_get_bind_param_info function

Retrieves information about the parameters that were bound using sqlany_bind_param.

Syntax
sacapi_bool sqlany_get_bind_param_info( a_sqlany_stmt * stmt, sacapi_u32 index,
  a_sqlany_bind_param_info * info )
Parameters
  • stmt   A statement successfully prepared using sqlany_prepare.

  • index   The index of the parameter. The number must be between 0 and sqlany_num_params() - 1.

  • info   The sqlany_bind_param_info buffer to be populated with the bound parameter's information.

Returns

1 on success or 0 on failure.

See also