variable.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*
  2.  * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var'
  3.  * statements
  4.  *
  5.  * $Id: variable.h,v 1.8 1998/10/08 18:30:27 momjian Exp $
  6.  *
  7.  */
  8. #ifndef VARIABLE_H
  9. #define VARIABLE_H 1
  10. enum DateFormat
  11. {
  12. Date_Postgres, Date_SQL, Date_ISO
  13. };
  14. /*-----------------------------------------------------------------------*/
  15. struct PGVariables
  16. {
  17. struct
  18. {
  19. bool euro;
  20. enum DateFormat format;
  21. } date;
  22. };
  23. extern struct PGVariables PGVariables;
  24. /*-----------------------------------------------------------------------*/
  25. bool SetPGVariable(const char *, const char *);
  26. bool GetPGVariable(const char *);
  27. bool ResetPGVariable(const char *);
  28. #endif  /* VARIABLE_H */