sqlca.h
来自「SQLAPI C/C++ 连接Oracle 数据库!」· C头文件 代码 · 共 41 行
H
41 行
/*** Sybase OC-LIBRARY** Confidential Property of Sybase, Inc.** (c) Copyright Sybase, Inc. 1991 - 2005** All rights reserved*//*** sqlca.h - This is the header file for the sqlca structure for precompilers*/#ifndef __SQLCA_H__#define __SQLCA_H__/********************************************************************************* sqlca structure used*******************************************************************************/typedef struct _sqlca{ char sqlcaid[8]; long sqlcabc; long sqlcode; struct { long sqlerrml; char sqlerrmc[256]; } sqlerrm; char sqlerrp[8]; long sqlerrd[6]; char sqlwarn[8]; char sqlext[8];} SQLCA;#endif /* __SQLCA_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?