~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_state.h

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

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
 
const char *drizzleclient_errno_to_sqlstate(uint32_t drizzleclient_errno);
 
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
const char *drizzle_errno_to_sqlstate(uint32_t drizzle_errno);
24
31
 
25
32
#endif