~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/row_client.h

  • Committer: Lee Bieber
  • Date: 2010-12-10 21:13:31 UTC
  • mfrom: (1992.3.1 drizzle-docfixes)
  • mto: This revision was merged to the branch mainline in revision 1993.
  • Revision ID: kalebral@gmail.com-20101210211331-c39v12qfo1w2gxkm
Merge Evan - Add some extra details to the libdrizzle documentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
/**
61
61
 * Get next row number for unbuffered results. Use the drizzle_field* functions
62
62
 * to read individual fields after this function succeeds.
 
63
 *
 
64
 * @param[in,out] result pointer to the structure to read from.
 
65
 * @param[out] ret_ptr Standard libdrizzle return value. May be set to
 
66
 *      DRIZZLE_RESULT_ERROR_CODE if the server return an error, such as a
 
67
 *      deadlock.
 
68
 * @return the row id if there is a valid row, or 0 if there are no more rows or an error.
63
69
 */
64
70
DRIZZLE_API
65
71
uint64_t drizzle_row_read(drizzle_result_st *result, drizzle_return_t *ret_ptr);