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

数据库系统

开发平台:

Unix_Linux

  1. #ifndef POSTGRES_SQLCA_H
  2. #define POSTGRES_SQLCA_H
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. struct sqlca
  8. {
  9. char sqlcaid[8];
  10. long sqlabc;
  11. long sqlcode;
  12. struct
  13. {
  14. int sqlerrml;
  15. char sqlerrmc[70];
  16. } sqlerrm;
  17. char sqlerrp[8];
  18. long sqlerrd[6];
  19. /* Element 0: empty */
  20. /* 1: empty */
  21. /* 2: number of rows processed */
  22. /* after an INSERT, UPDATE or */
  23. /* DELETE statement  */
  24. /* 3: empty */
  25. /* 4: empty */
  26. /* 5: empty */
  27. char sqlwarn[8];
  28. /* Element 0: set to 'W' if at least one other is 'W' */
  29. /* 1: if 'W' at least one character string   */
  30. /* value was truncated when it was    */
  31. /* stored into a host variable.    */
  32. /* 2: empty   */
  33. /* 3: empty   */
  34. /* 4: empty   */
  35. /* 5: empty   */
  36. /* 6: empty   */
  37. /* 7: empty   */
  38. char sqlext[8];
  39. };
  40. extern struct sqlca sqlca;
  41. #endif
  42. #ifdef __cplusplus
  43. }
  44. #endif