15 lines
160 B
C
15 lines
160 B
C
#ifndef _TABLE_DEFS_H_
|
|
#define _TABLE_DEFS_H_
|
|
|
|
// 数据库字段类型
|
|
|
|
enum DB_FILED_TYPE {
|
|
ftInt = 0,
|
|
ftDouble,
|
|
ftString,
|
|
ftInt64,
|
|
ftBlob,
|
|
ftCount,
|
|
};
|
|
|
|
#endif |