~drizzle-developers/libdrizzle/build

« back to all changes in this revision

Viewing changes to libdrizzle/row_client.h

  • Committer: Eric Day
  • Date: 2010-02-04 21:09:35 UTC
  • mfrom: (136.1.4 libdrizzle)
  • Revision ID: eday@oddments.org-20100204210935-ca52z7bg8savkoce
Merged Evan, fixed one issue where packet read was removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
uint64_t drizzle_row_read(drizzle_result_st *result, drizzle_return_t *ret_ptr);
40
40
 
41
41
/**
42
 
 * Read and buffer one row.
 
42
 * Read and buffer one row. The returned row must be freed by the caller with
 
43
 * drizzle_row_free().
 
44
 *
 
45
 * @param[in,out] result pointer to the result structure to read from.
 
46
 * @param[out] ret_pointer Standard drizzle return value.
 
47
 * @return the row that was read, or NULL if there are no more rows.
43
48
 */
44
49
DRIZZLE_API
45
50
drizzle_row_t drizzle_row_buffer(drizzle_result_st *result,