Sun StorageTek 5800 System Client API Reference Guide

hc_pstmt_create

Creates an hc_pstmt_t for use with the hc_pstmt_query_ez function.

Synopsis

     hcerr_t hc_pstmt_create(hc_session_t *session, 
          hc_string_t query,
          hc_pstmt_t **ptr);

Description

This function creates a prepared statement for use with the hc_pstmt_query_ez function.

Parameters

rset

Updated to point to the new query result set. See hc_query_result_set_t.

session

IN: session that this query will be used with.

query

IN: Query (where clause with ”?’ for values).

ptr

OUT: Updated to point to opaque hc_pstmt_t.

Return Codes

     HCERR_OK
     HCERR_OOM

See Also

hc_pstmt_query_ez