Lines Matching refs:sth
189 RETCODE backsql_Prepare( SQLHDBC dbh, SQLHSTMT *sth, const char* query, int timeout );
191 #define backsql_BindParamStr( sth, par_ind, io, str, maxlen ) \ argument
192 SQLBindParameter( (sth), (SQLUSMALLINT)(par_ind), \
197 #define backsql_BindParamBerVal( sth, par_ind, io, bv ) \ argument
198 SQLBindParameter( (sth), (SQLUSMALLINT)(par_ind), \
204 #define backsql_BindParamInt( sth, par_ind, io, val ) \ argument
205 SQLBindParameter( (sth), (SQLUSMALLINT)(par_ind), \
209 #define backsql_BindParamNumID( sth, par_ind, io, val ) \ argument
210 SQLBindParameter( (sth), (SQLUSMALLINT)(par_ind), \
215 #define backsql_BindParamID( sth, par_ind, io, id ) \ argument
216 backsql_BindParamBerVal( (sth), (par_ind), (io), (id) )
218 #define backsql_BindParamID( sth, par_ind, io, id ) \ argument
219 backsql_BindParamNumID( (sth), (par_ind), (io), (id) )
222 RETCODE backsql_BindRowAsStrings_x( SQLHSTMT sth, BACKSQL_ROW_NTS *row, void *ctx );
224 RETCODE backsql_BindRowAsStrings( SQLHSTMT sth, BACKSQL_ROW_NTS *row );
230 void backsql_PrintErrors( SQLHENV henv, SQLHDBC hdbc, SQLHSTMT sth, int rc );