acl  3.5.3.0
acl_dberr.h
浏览该文件的文档.
1 #ifndef ACL_DBERR_INCLUDE_H
2 #define ACL_DBERR_INCLUDE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #define ACL_DB_OK 0 /* 成功 */
9 #define ACL_DB_ERR_CALLBACK 1 /* 用户的回调函数返回失败 */
10 #define ACL_DB_ERR_SELECT 100 /* 用户查询语句失败 */
11 #define ACL_DB_ERR_UPDATE 101 /* 用户更新语句失败 */
12 #define ACL_DB_ERR_EMPTY 102 /* 查询结果为空 */
13 #define ACL_DB_ERR_STORE 103 /* 查询语句获得的结果后存储于本地时失败 */
14 #define ACL_DB_ERR_AFFECTED 104 /* 更新语句对数据库无实际更新操作 */
15 #define ACL_DB_ERR_ALLOC 105 /* 内部分配内存失败 */
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif
22