MDBFIELD.H
上传用户:sanlisteel
上传日期:2008-06-19
资源大小:98k
文件大小:1k
源码类别:

数据库系统

开发平台:

C/C++

  1. #ifndef MDBFIELD_H_
  2. #define MDBFIELD_H_
  3. #include "StdAfx.h"
  4. #define  MAX_LEN 12
  5. typedef struct tagDBFields
  6. {
  7. char *name;
  8. char *label;
  9. char m_name[60];
  10. int  len;
  11. }DBFields;
  12. DBFields dbFields[MAX_LEN]=
  13. { "name"        ,     "姓名","",50,
  14.   "telphone"    ,     "电话","",120,
  15.   "pager"       ,     "呼机","",120,
  16.   "mobile"      ,     "手机","",120,
  17.   "email"       ,     "email","",200,
  18.   "age"         ,     "年龄","",40,
  19.   "sex"         ,     "性别","",40,
  20.   "company"     ,     "公司","",200,
  21.   "address"     ,     "地址","",200,
  22.   "position"    ,     "职称","",50,
  23.   "friendship"  ,     "关系","",80,
  24.   "introduction",     "简介","",200
  25. };
  26. #endif
  27.