~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.h

  • Committer: Brian Aker
  • Date: 2011-01-13 07:24:48 UTC
  • mfrom: (2068.7.8 session-fix)
  • Revision ID: brian@gir-3-20110113072448-c07so48hh6lopysr
Merge in fix around API (we should be able to move to seeing errors directly
from SE interface (which solves the wishlist issue, and convoluted issues
around issuing errors).

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
                       const std::string& message);
80
80
#define DRIZZLE_ADD_ERROR_MESSAGE(code, msg) add_error_message(code, STRINGIFY_ARG(code), msg)
81
81
 
82
 
void my_error(error_t nr, drizzled::Identifier::const_reference ref);
 
82
void my_error(error_t nr, drizzled::Identifier::const_reference ref, myf MyFlags= MYF(0));
83
83
void my_error(error_t nr);
84
84
void my_error(error_t nr, myf MyFlags, ...);
85
85
void my_message(uint32_t my_err, const char *str, myf MyFlags);