CUBRID Engine  latest
cnverr.h File Reference
Include dependency graph for cnverr.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define CNV_ERR_STRING_TOO_LONG   CO_CODE( CO_MODULE_CNV, 1)
 
#define CNV_ERR_BAD_TYPE   CO_CODE( CO_MODULE_CNV, 2)
 
#define CNV_ERR_BAD_CHAR   CO_CODE( CO_MODULE_CNV, 3)
 
#define CNV_ERR_NO_DECIMAL   CO_CODE( CO_MODULE_CNV, 4)
 
#define CNV_ERR_NO_SIGN   CO_CODE( CO_MODULE_CNV, 5)
 
#define CNV_ERR_BAD_LEADING   CO_CODE( CO_MODULE_CNV, 6)
 
#define CNV_ERR_BAD_TRAILING   CO_CODE( CO_MODULE_CNV, 7)
 
#define CNV_ERR_BAD_THOUS   CO_CODE( CO_MODULE_CNV, 8)
 
#define CNV_ERR_EXTRA_INTEGER   CO_CODE( CO_MODULE_CNV, 9)
 
#define CNV_ERR_EXTRA_FRACTION   CO_CODE( CO_MODULE_CNV, 10)
 
#define CNV_ERR_MISSING_INTEGER   CO_CODE( CO_MODULE_CNV, 11)
 
#define CNV_ERR_MISSING_FRACTION   CO_CODE( CO_MODULE_CNV, 12)
 
#define CNV_ERR_EMPTY_STRING   CO_CODE( CO_MODULE_CNV, 13)
 
#define CNV_ERR_BAD_POSITION   CO_CODE( CO_MODULE_CNV, 14)
 
#define CNV_ERR_BAD_NULL   CO_CODE( CO_MODULE_CNV, 15)
 
#define CNV_ERR_EXTRA_SIGN   CO_CODE( CO_MODULE_CNV, 16)
 
#define CNV_ERR_INTEGER_OVERFLOW   CO_CODE( CO_MODULE_CNV, 17)
 
#define CNV_ERR_INTEGER_UNDERFLOW   CO_CODE( CO_MODULE_CNV, 18)
 
#define CNV_ERR_BAD_PATTERN   CO_CODE( CO_MODULE_CNV, 19)
 
#define CNV_ERR_BAD_X_DIGITS   CO_CODE( CO_MODULE_CNV, 20)
 
#define CNV_ERR_NO_CURRENCY   CO_CODE( CO_MODULE_CNV, 21)
 
#define CNV_ERR_NOT_UNIQUE   CO_CODE( CO_MODULE_CNV, 22)
 
#define CNV_ERR_BAD_DATE   CO_CODE( CO_MODULE_CNV, 23)
 
#define CNV_ERR_BAD_YEAR   CO_CODE( CO_MODULE_CNV, 24)
 
#define CNV_ERR_BAD_MONTH   CO_CODE( CO_MODULE_CNV, 25)
 
#define CNV_ERR_BAD_MDAY   CO_CODE( CO_MODULE_CNV, 26)
 
#define CNV_ERR_BAD_WDAY   CO_CODE( CO_MODULE_CNV, 27)
 
#define CNV_ERR_FLOAT_OVERFLOW   CO_CODE( CO_MODULE_CNV, 28)
 
#define CNV_ERR_FLOAT_UNDERFLOW   CO_CODE( CO_MODULE_CNV, 29)
 
#define CNV_ERR_UNKNOWN_DATE   CO_CODE( CO_MODULE_CNV, 30)
 
#define CNV_ERR_BAD_TIME   CO_CODE( CO_MODULE_CNV, 31)
 
#define CNV_ERR_BAD_HOUR   CO_CODE( CO_MODULE_CNV, 32)
 
#define CNV_ERR_BAD_MIN   CO_CODE( CO_MODULE_CNV, 33)
 
#define CNV_ERR_BAD_SEC   CO_CODE( CO_MODULE_CNV, 34)
 
#define CNV_ERR_BAD_MSEC   CO_CODE( CO_MODULE_CNV, 35)
 
#define CNV_ERR_BAD_AM_PM   CO_CODE( CO_MODULE_CNV, 36)
 
#define CNV_ERR_BAD_TIMESTAMP   CO_CODE( CO_MODULE_CNV, 37)
 
#define CNV_ERR_TIMESTAMP_UNDERFLOW   CO_CODE( CO_MODULE_CNV, 38)
 
#define CNV_ERR_TIMESTAMP_OVERFLOW   CO_CODE( CO_MODULE_CNV, 39)
 
#define CNV_ERR_BAD_DATETIME   CO_CODE( CO_MODULE_CNV, 40)
 
#define CNV_ERR_DATETIME_UNDERFLOW   CO_CODE( CO_MODULE_CNV, 41)
 
#define CNV_ERR_DATETIME_OVERFLOW   CO_CODE( CO_MODULE_CNV, 42)
 
#define CNV_ERR_BAD_FORMAT   CO_CODE( CO_MODULE_CNV, 43)
 
#define CNV_ER_FMT_STRING_TOO_LONG   "Value string longer than %d characters."
 
#define CNV_ER_FMT_BAD_TYPE   "Can't convert value of type `%s' to a string."
 
#define CNV_ER_FMT_BAD_CHAR   "Format error -- `%s' is not allowed."
 
#define CNV_ER_FMT_NO_DECIMAL   "Format error -- decimal point missing."
 
#define CNV_ER_FMT_NO_SIGN   "Format error -- sign missing."
 
#define CNV_ER_FMT_BAD_LEADING   "Format error -- invalid leading `%s'."
 
#define CNV_ER_FMT_BAD_TRAILING   "Format error -- invalid trailing `%s'."
 
#define CNV_ER_FMT_BAD_THOUS   "Format error -- missing or misplaced thousands separator."
 
#define CNV_ER_FMT_EXTRA_INTEGER   "Format error -- too many digits in integer part."
 
#define CNV_ER_FMT_EXTRA_FRACTION   "Format error -- too many digits in fraction part."
 
#define CNV_ER_FMT_MISSING_INTEGER   "Format error -- not enough digits in integer part."
 
#define CNV_ER_FMT_MISSING_FRACTION   "Format error -- not enough digits in fraction part."
 
#define CNV_ER_FMT_EMPTY_STRING   "Format error -- empty value string."
 
#define CNV_ER_FMT_BAD_POSITION   "Format error -- `%s' in wrong position."
 
#define CNV_ER_FMT_BAD_NULL   "Can't convert non-empty string to DB_TYPE_NULL."
 
#define CNV_ER_FMT_EXTRA_SIGN   "Format error -- too many sign characters."
 
#define CNV_ER_FMT_INTEGER_OVERFLOW   "Invalid integer -- greater than %ld."
 
#define CNV_ER_FMT_INTEGER_UNDERFLOW   "Invalid integer -- less than %ld."
 
#define CNV_ER_FMT_BAD_PATTERN   "Format error -- expected `%s' at position %d."
 
#define CNV_ER_FMT_BAD_X_DIGITS   "Format error -- expected %d digits at position %d."
 
#define CNV_ER_FMT_NO_CURRENCY   "Format error -- currency symbol missing."
 
#define CNV_ER_FMT_NOT_UNIQUE   "Invalid format -- may not describe a unique date or time."
 
#define CNV_ER_FMT_BAD_DATE   "Format error -- missing or invalid date (%%%s)."
 
#define CNV_ER_FMT_BAD_YEAR   "Format error -- missing or invalid year (%%%s)."
 
#define CNV_ER_FMT_BAD_MONTH   "Format error -- missing or invalid month (%%%s)."
 
#define CNV_ER_FMT_BAD_MDAY   "Format error -- missing or invalid month day (%%%s)."
 
#define CNV_ER_FMT_BAD_WDAY   "Format error -- missing or invalid week day (%%%s)."
 
#define CNV_ER_FMT_FLOAT_OVERFLOW   "Invalid float -- greater than %e."
 
#define CNV_ER_FMT_FLOAT_UNDERFLOW   "Invalid float -- less than %e."
 
#define CNV_ER_FMT_UNKNOWN_DATE   "%s does not represent an actual date."
 
#define CNV_ER_FMT_BAD_TIME   "Format error -- missing or invalid time (%%%s)."
 
#define CNV_ER_FMT_BAD_HOUR   "Format error -- missing or invalid hour (%%%s)."
 
#define CNV_ER_FMT_BAD_MIN   "Format error -- missing or invalid minute (%%%s)."
 
#define CNV_ER_FMT_BAD_SEC   "Format error -- missing or invalid second (%%%s)."
 
#define CNV_ER_FMT_BAD_MSEC   "Format error -- missing or invalid millisecond (%%%s)."
 
#define CNV_ER_FMT_BAD_AM_PM   "Format error -- missing or invalid AM/PM (%%%s)."
 
#define CNV_ER_FMT_BAD_TIMESTAMP   "Format error -- missing or invalid timestamp (%%%s)."
 
#define CNV_ER_FMT_TIMESTAMP_UNDERFLOW   "Invalid timestamp -- less than %s."
 
#define CNV_ER_FMT_TIMESTAMP_OVERFLOW   "Invalid timestamp -- greater than %s."
 
#define CNV_ER_FMT_BAD_DATETIME   "Format error -- missing or invalid datetime (%%%s)."
 
#define CNV_ER_FMT_DATETIME_UNDERFLOW   "Invalid datetime -- less than %s."
 
#define CNV_ER_FMT_DATETIME_OVERFLOW   "Invalid datetime -- greater than %s."
 
#define CNV_ER_FMT_BAD_FORMAT   "`%s' is not a valid %s format."
 

Macro Definition Documentation

#define CNV_ER_FMT_BAD_AM_PM   "Format error -- missing or invalid AM/PM (%%%s)."

Definition at line 147 of file cnverr.h.

Referenced by local_am_pm_value(), and us_time_value().

#define CNV_ER_FMT_BAD_CHAR   "Format error -- `%s' is not allowed."

Definition at line 81 of file cnverr.h.

Referenced by cnv_bad_char().

#define CNV_ER_FMT_BAD_DATE   "Format error -- missing or invalid date (%%%s)."

Definition at line 121 of file cnverr.h.

Referenced by fmt_date_value(), ko_date_value(), and us_date_value().

#define CNV_ER_FMT_BAD_DATETIME   "Format error -- missing or invalid datetime (%%%s)."

Definition at line 155 of file cnverr.h.

Referenced by us_time_value().

#define CNV_ER_FMT_BAD_FORMAT   "`%s' is not a valid %s format."

Definition at line 162 of file cnverr.h.

Referenced by cnv_bad_char().

#define CNV_ER_FMT_BAD_HOUR   "Format error -- missing or invalid hour (%%%s)."

Definition at line 139 of file cnverr.h.

Referenced by db_string_datetime(), db_string_time(), db_string_timestamp(), and fmt_time_value().

#define CNV_ER_FMT_BAD_LEADING   "Format error -- invalid leading `%s'."

Definition at line 87 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_digits().

#define CNV_ER_FMT_BAD_MDAY   "Format error -- missing or invalid month day (%%%s)."

Definition at line 127 of file cnverr.h.

Referenced by fmt_date_value().

#define CNV_ER_FMT_BAD_MIN   "Format error -- missing or invalid minute (%%%s)."

Definition at line 141 of file cnverr.h.

Referenced by fmt_minute_value().

#define CNV_ER_FMT_BAD_MONTH   "Format error -- missing or invalid month (%%%s)."

Definition at line 125 of file cnverr.h.

Referenced by fmt_date_value().

#define CNV_ER_FMT_BAD_MSEC   "Format error -- missing or invalid millisecond (%%%s)."

Definition at line 145 of file cnverr.h.

Referenced by fmt_second_value().

#define CNV_ER_FMT_BAD_NULL   "Can't convert non-empty string to DB_TYPE_NULL."

Definition at line 105 of file cnverr.h.

Referenced by db_string_value().

#define CNV_ER_FMT_BAD_PATTERN   "Format error -- expected `%s' at position %d."
#define CNV_ER_FMT_BAD_POSITION   "Format error -- `%s' in wrong position."

Definition at line 103 of file cnverr.h.

Referenced by cnv_bad_char().

#define CNV_ER_FMT_BAD_SEC   "Format error -- missing or invalid second (%%%s)."

Definition at line 143 of file cnverr.h.

Referenced by fmt_second_value().

#define CNV_ER_FMT_BAD_THOUS   "Format error -- missing or misplaced thousands separator."

Definition at line 91 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_digits().

#define CNV_ER_FMT_BAD_TIME   "Format error -- missing or invalid time (%%%s)."

Definition at line 137 of file cnverr.h.

Referenced by fmt_time_value(), ko_time_value(), and us_time_value().

#define CNV_ER_FMT_BAD_TIMESTAMP   "Format error -- missing or invalid timestamp (%%%s)."

Definition at line 149 of file cnverr.h.

Referenced by fmt_timestamp_value(), ko_time_value(), and us_time_value().

#define CNV_ER_FMT_BAD_TRAILING   "Format error -- invalid trailing `%s'."

Definition at line 89 of file cnverr.h.

Referenced by bfmt_print(), and fmt_fractional_digits().

#define CNV_ER_FMT_BAD_TYPE   "Can't convert value of type `%s' to a string."

Definition at line 79 of file cnverr.h.

Referenced by db_bit_string(), and db_string_value().

#define CNV_ER_FMT_BAD_WDAY   "Format error -- missing or invalid week day (%%%s)."

Definition at line 129 of file cnverr.h.

Referenced by fmt_date_value().

#define CNV_ER_FMT_BAD_X_DIGITS   "Format error -- expected %d digits at position %d."

Definition at line 115 of file cnverr.h.

#define CNV_ER_FMT_BAD_YEAR   "Format error -- missing or invalid year (%%%s)."

Definition at line 123 of file cnverr.h.

Referenced by fmt_date_value().

#define CNV_ER_FMT_DATETIME_OVERFLOW   "Invalid datetime -- greater than %s."

Definition at line 159 of file cnverr.h.

#define CNV_ER_FMT_DATETIME_UNDERFLOW   "Invalid datetime -- less than %s."

Definition at line 157 of file cnverr.h.

#define CNV_ER_FMT_EMPTY_STRING   "Format error -- empty value string."

Definition at line 101 of file cnverr.h.

#define CNV_ER_FMT_EXTRA_FRACTION   "Format error -- too many digits in fraction part."

Definition at line 95 of file cnverr.h.

Referenced by bfmt_print(), and fmt_fractional_value().

#define CNV_ER_FMT_EXTRA_INTEGER   "Format error -- too many digits in integer part."

Definition at line 93 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_value().

#define CNV_ER_FMT_EXTRA_SIGN   "Format error -- too many sign characters."

Definition at line 107 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_digits().

#define CNV_ER_FMT_FLOAT_OVERFLOW   "Invalid float -- greater than %e."

Definition at line 131 of file cnverr.h.

Referenced by db_string_float().

#define CNV_ER_FMT_FLOAT_UNDERFLOW   "Invalid float -- less than %e."

Definition at line 133 of file cnverr.h.

Referenced by db_string_float().

#define CNV_ER_FMT_INTEGER_OVERFLOW   "Invalid integer -- greater than %ld."

Definition at line 109 of file cnverr.h.

Referenced by bifmt_numeric_value(), db_string_short(), and ifmt_numeric_value().

#define CNV_ER_FMT_INTEGER_UNDERFLOW   "Invalid integer -- less than %ld."

Definition at line 111 of file cnverr.h.

Referenced by bifmt_numeric_value(), db_string_short(), and ifmt_numeric_value().

#define CNV_ER_FMT_MISSING_FRACTION   "Format error -- not enough digits in fraction part."

Definition at line 99 of file cnverr.h.

Referenced by bfmt_print(), and fmt_fractional_value().

#define CNV_ER_FMT_MISSING_INTEGER   "Format error -- not enough digits in integer part."

Definition at line 97 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_value().

#define CNV_ER_FMT_NO_CURRENCY   "Format error -- currency symbol missing."

Definition at line 117 of file cnverr.h.

Referenced by mfmt_value().

#define CNV_ER_FMT_NO_DECIMAL   "Format error -- decimal point missing."

Definition at line 83 of file cnverr.h.

Referenced by bfmt_print(), ffmt_value(), and mfmt_value().

#define CNV_ER_FMT_NO_SIGN   "Format error -- sign missing."

Definition at line 85 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_digits().

#define CNV_ER_FMT_NOT_UNIQUE   "Invalid format -- may not describe a unique date or time."

Definition at line 119 of file cnverr.h.

#define CNV_ER_FMT_STRING_TOO_LONG   "Value string longer than %d characters."
#define CNV_ER_FMT_TIMESTAMP_OVERFLOW   "Invalid timestamp -- greater than %s."

Definition at line 153 of file cnverr.h.

Referenced by cnv_valid_currency().

#define CNV_ER_FMT_TIMESTAMP_UNDERFLOW   "Invalid timestamp -- less than %s."

Definition at line 151 of file cnverr.h.

Referenced by cnv_valid_currency().

#define CNV_ER_FMT_UNKNOWN_DATE   "%s does not represent an actual date."

Definition at line 135 of file cnverr.h.

Referenced by db_string_date(), db_string_datetime(), and db_string_timestamp().

#define CNV_ERR_BAD_AM_PM   CO_CODE( CO_MODULE_CNV, 36)

Definition at line 67 of file cnverr.h.

Referenced by local_am_pm_value(), and us_time_value().

#define CNV_ERR_BAD_CHAR   CO_CODE( CO_MODULE_CNV, 3)

Definition at line 34 of file cnverr.h.

Referenced by cnv_bad_char().

#define CNV_ERR_BAD_DATE   CO_CODE( CO_MODULE_CNV, 23)

Definition at line 54 of file cnverr.h.

Referenced by fmt_date_value(), ko_date_value(), and us_date_value().

#define CNV_ERR_BAD_DATETIME   CO_CODE( CO_MODULE_CNV, 40)

Definition at line 71 of file cnverr.h.

Referenced by us_time_value().

#define CNV_ERR_BAD_FORMAT   CO_CODE( CO_MODULE_CNV, 43)

Definition at line 74 of file cnverr.h.

Referenced by cnv_bad_char().

#define CNV_ERR_BAD_HOUR   CO_CODE( CO_MODULE_CNV, 32)

Definition at line 63 of file cnverr.h.

Referenced by db_string_datetime(), db_string_time(), db_string_timestamp(), and fmt_time_value().

#define CNV_ERR_BAD_LEADING   CO_CODE( CO_MODULE_CNV, 6)

Definition at line 37 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_digits().

#define CNV_ERR_BAD_MDAY   CO_CODE( CO_MODULE_CNV, 26)

Definition at line 57 of file cnverr.h.

Referenced by fmt_date_value().

#define CNV_ERR_BAD_MIN   CO_CODE( CO_MODULE_CNV, 33)

Definition at line 64 of file cnverr.h.

Referenced by fmt_minute_value().

#define CNV_ERR_BAD_MONTH   CO_CODE( CO_MODULE_CNV, 25)

Definition at line 56 of file cnverr.h.

Referenced by fmt_date_value().

#define CNV_ERR_BAD_MSEC   CO_CODE( CO_MODULE_CNV, 35)

Definition at line 66 of file cnverr.h.

Referenced by fmt_second_value().

#define CNV_ERR_BAD_NULL   CO_CODE( CO_MODULE_CNV, 15)

Definition at line 46 of file cnverr.h.

Referenced by db_string_value().

#define CNV_ERR_BAD_PATTERN   CO_CODE( CO_MODULE_CNV, 19)
#define CNV_ERR_BAD_POSITION   CO_CODE( CO_MODULE_CNV, 14)

Definition at line 45 of file cnverr.h.

Referenced by cnv_bad_char().

#define CNV_ERR_BAD_SEC   CO_CODE( CO_MODULE_CNV, 34)

Definition at line 65 of file cnverr.h.

Referenced by fmt_second_value().

#define CNV_ERR_BAD_THOUS   CO_CODE( CO_MODULE_CNV, 8)

Definition at line 39 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_digits().

#define CNV_ERR_BAD_TIME   CO_CODE( CO_MODULE_CNV, 31)

Definition at line 62 of file cnverr.h.

Referenced by fmt_time_value(), ko_time_value(), and us_time_value().

#define CNV_ERR_BAD_TIMESTAMP   CO_CODE( CO_MODULE_CNV, 37)

Definition at line 68 of file cnverr.h.

Referenced by fmt_timestamp_value(), ko_time_value(), and us_time_value().

#define CNV_ERR_BAD_TRAILING   CO_CODE( CO_MODULE_CNV, 7)

Definition at line 38 of file cnverr.h.

Referenced by bfmt_print(), and fmt_fractional_digits().

#define CNV_ERR_BAD_TYPE   CO_CODE( CO_MODULE_CNV, 2)

Definition at line 33 of file cnverr.h.

Referenced by db_bit_string(), and db_string_value().

#define CNV_ERR_BAD_WDAY   CO_CODE( CO_MODULE_CNV, 27)

Definition at line 58 of file cnverr.h.

Referenced by fmt_date_value().

#define CNV_ERR_BAD_X_DIGITS   CO_CODE( CO_MODULE_CNV, 20)

Definition at line 51 of file cnverr.h.

#define CNV_ERR_BAD_YEAR   CO_CODE( CO_MODULE_CNV, 24)

Definition at line 55 of file cnverr.h.

Referenced by fmt_date_value().

#define CNV_ERR_DATETIME_OVERFLOW   CO_CODE( CO_MODULE_CNV, 42)

Definition at line 73 of file cnverr.h.

#define CNV_ERR_DATETIME_UNDERFLOW   CO_CODE( CO_MODULE_CNV, 41)

Definition at line 72 of file cnverr.h.

#define CNV_ERR_EMPTY_STRING   CO_CODE( CO_MODULE_CNV, 13)

Definition at line 44 of file cnverr.h.

#define CNV_ERR_EXTRA_FRACTION   CO_CODE( CO_MODULE_CNV, 10)

Definition at line 41 of file cnverr.h.

Referenced by bfmt_print(), and fmt_fractional_value().

#define CNV_ERR_EXTRA_INTEGER   CO_CODE( CO_MODULE_CNV, 9)

Definition at line 40 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_value().

#define CNV_ERR_EXTRA_SIGN   CO_CODE( CO_MODULE_CNV, 16)

Definition at line 47 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_digits().

#define CNV_ERR_FLOAT_OVERFLOW   CO_CODE( CO_MODULE_CNV, 28)

Definition at line 59 of file cnverr.h.

Referenced by db_string_float().

#define CNV_ERR_FLOAT_UNDERFLOW   CO_CODE( CO_MODULE_CNV, 29)

Definition at line 60 of file cnverr.h.

Referenced by db_string_float().

#define CNV_ERR_INTEGER_OVERFLOW   CO_CODE( CO_MODULE_CNV, 17)

Definition at line 48 of file cnverr.h.

Referenced by bifmt_numeric_value(), db_string_short(), and ifmt_numeric_value().

#define CNV_ERR_INTEGER_UNDERFLOW   CO_CODE( CO_MODULE_CNV, 18)

Definition at line 49 of file cnverr.h.

Referenced by bifmt_numeric_value(), db_string_short(), and ifmt_numeric_value().

#define CNV_ERR_MISSING_FRACTION   CO_CODE( CO_MODULE_CNV, 12)

Definition at line 43 of file cnverr.h.

Referenced by bfmt_print(), ffmt_value(), fmt_fractional_value(), and mfmt_value().

#define CNV_ERR_MISSING_INTEGER   CO_CODE( CO_MODULE_CNV, 11)
#define CNV_ERR_NO_CURRENCY   CO_CODE( CO_MODULE_CNV, 21)

Definition at line 52 of file cnverr.h.

Referenced by mfmt_value().

#define CNV_ERR_NO_DECIMAL   CO_CODE( CO_MODULE_CNV, 4)

Definition at line 35 of file cnverr.h.

Referenced by bfmt_print(), ffmt_value(), and mfmt_value().

#define CNV_ERR_NO_SIGN   CO_CODE( CO_MODULE_CNV, 5)

Definition at line 36 of file cnverr.h.

Referenced by bfmt_print(), and fmt_integral_digits().

#define CNV_ERR_NOT_UNIQUE   CO_CODE( CO_MODULE_CNV, 22)

Definition at line 53 of file cnverr.h.

#define CNV_ERR_TIMESTAMP_OVERFLOW   CO_CODE( CO_MODULE_CNV, 39)

Definition at line 70 of file cnverr.h.

Referenced by cnv_valid_currency().

#define CNV_ERR_TIMESTAMP_UNDERFLOW   CO_CODE( CO_MODULE_CNV, 38)

Definition at line 69 of file cnverr.h.

Referenced by cnv_valid_currency().

#define CNV_ERR_UNKNOWN_DATE   CO_CODE( CO_MODULE_CNV, 30)

Definition at line 61 of file cnverr.h.

Referenced by db_string_date(), db_string_datetime(), and db_string_timestamp().