~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_state.h

  • Committer: Brian Aker
  • Date: 2008-10-07 15:15:28 UTC
  • mfrom: (481.1.24 codestyle)
  • Revision ID: brian@tangent.org-20081007151528-xc1w8m90lqb37j4r
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef _drizzled_sql_state_h
21
21
#define _drizzled_sql_state_h
22
22
 
23
 
struct st_map_errno_to_sqlstate
24
 
{
25
 
  uint32_t drizzle_errno;
26
 
  const char *odbc_state;
27
 
  const char *jdbc_state;
28
 
};
29
 
 
30
23
const char *drizzle_errno_to_sqlstate(uint32_t drizzle_errno);
31
24
 
32
25
#endif