📄 sqlca.h
字号:
/* Sccsid @(#) sqlca.h 8.1 8/10/93 *//*** Sybase OC-LIBRARY Version 5.0** Confidential Property of Sybase, Inc.** (c) Copyright Sybase, Inc. 1991, 1992** 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__ *//* Sccsid %Z% %M% %I% %G% */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -