~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/libdrizzle_priv.c

  • 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:
19
19
 
20
20
/* Various helper functions not intended to be part of a public API */
21
21
 
22
 
#include "config.h"
 
22
#include <drizzled/global.h>
23
23
#include "libdrizzle_priv.h"
24
24
#include <poll.h>
25
25
#include <fcntl.h>
26
26
 
27
 
const char _dig_vec_upper[] =
28
 
  "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
29
 
const char _dig_vec_lower[] =
30
 
  "0123456789abcdefghijklmnopqrstuvwxyz";
31
 
 
32
27
const char  *unknown_sqlstate= "HY000";
33
28
const char  *not_error_sqlstate= "00000";
34
29
const char  *cant_connect_sqlstate= "08001";