~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_state.h

  • Committer: Eric Day
  • Date: 2009-08-27 07:26:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1131.
  • Revision ID: eday@oddments.org-20090827072622-72te13ua0wdlc2ky
Reworked listen interface to not require binding of TCP ports.

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