Sends data as part of a bound parameter.
public sacapi_bool sqlany_send_param_data( a_sqlany_stmt * sqlany_stmt, sacapi_u32 index, char * buffer, size_t size )
sqlany_stmt A statement prepared successfully using sqlany_prepare().
index The index of the parameter. This should be a number between 0 and sqlany_num_params() - 1.
buffer The data to be sent.
size The number of bytes to send.
1 on success or 0 on failure.
This method can be used to send a large amount of data for a bound parameter in chunks.