sybfunc.h
上传用户:bilang918
上传日期:2010-03-24
资源大小:558k
文件大小:0k
源码类别:

网络

开发平台:

Unix_Linux

  1. #ifndef _SYBFUNC_H_
  2. #define _SYBFUNC_H_
  3. #endif
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. #include <string.h>
  7. #define GRS_USER       "sa"
  8. #define GRS_PASSWORD   ""
  9. #define GRS_DATABASE   "MSS"
  10. #define GRS_LANGUAGE   "us_english"
  11. void       db_init(void);
  12. DBPROCESS* db_connect(char *dbname, char *usrname, char *usrpwd);
  13. void       db_disconnect(DBPROCESS* dbproc);
  14. int        db_operation(DBPROCESS *dbproc, char *sqlstr);