~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-1.0/libdrizzle/column_client.h

  • Committer: Andrew Hutchings
  • Date: 2011-09-07 11:17:03 UTC
  • mto: This revision was merged to the branch mainline in revision 2415.
  • Revision ID: andrew@linuxjedi.co.uk-20110907111703-17yajajlqndo6f3o
Add function drizzle_column_skip_all
Add error when rows retrieval is attemped before all columns have been retrieved

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 */
59
59
 
60
60
/**
61
 
 * Skip all columns in result.
 
61
 * Skip a column in result.
62
62
 */
63
63
DRIZZLE_API
64
64
drizzle_return_t drizzle_column_skip(drizzle_result_st *result);
65
65
 
66
66
/**
 
67
 * Skip all columns in a result
 
68
 */
 
69
 
 
70
DRIZZLE_API
 
71
drizzle_return_t drizzle_column_skip_all(drizzle_result_st *result);
 
72
 
 
73
/**
67
74
 * Read column information.
68
75
 *
69
76
 * @param[in,out] result pointer to the structure to read from.