~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/drizzle_res.h

  • Committer: Mark Atwood
  • Date: 2009-01-05 04:37:22 UTC
  • mto: (758.1.1 devel)
  • mto: This revision was merged to the branch mainline in revision 759.
  • Revision ID: me@mark.atwood.name-20090105043722-03l4mzcxi4yjjjih
replace sql_print_error etc with errmsg_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#endif
26
26
 
27
27
#include <stdint.h>
28
 
#include <stdbool.h>
 
28
#if !defined(__cplusplus)
 
29
# include <stdbool.h>
 
30
#endif
29
31
#include <libdrizzle/drizzle_field.h>
30
32
#include <libdrizzle/drizzle_data.h>
31
33
#include <libdrizzle/drizzle_rows.h>
46
48
  uint32_t  field_count, current_field;
47
49
  bool  eof;      /* Used by drizzle_fetch_row */
48
50
  /* drizzle_stmt_close() had to cancel this result */
49
 
  bool       unbuffered_fetch_cancelled; 
 
51
  bool       unbuffered_fetch_cancelled;
50
52
  void *extension;
51
53
} DRIZZLE_RES;
52
54