Sun StorageTek 5800 System Client API Reference Guide

hc_pstmt_set_string

Adds a string binding to a hc_pstmt_t.

Synopsis

     hcerr_t hc_pstmt_set_string(hc_pstmt_t *pstmt,
          int which,
          hc_string_t value);

Description

This function binds an hc_string_t to one of the variables in a prepared statement. The variable must be of the appropriate type in the database, that is, string (UTF-8). Errors in binding and type are returned when the hc_pstmt_t is used to query the server.

Parameters

pstmt

Prepared statement to add the binding to.

which

IN: Variable (”?’) in the prepared statement, numbered from 1.

value

IN: String to bind.

Return Codes

     HCERR_OK
     HCERR_OOM

See Also

hc_pstmt_create