mtollari 63d98e39cd Patch level : 12.0 no-patch
Files correlati     : 
Commento            : 
- Creazione nuova cartella per contenere tutte le librerie esterne
- Aggiunta nuova libreria sqlapi per interfacciare campo a vari DB

git-svn-id: svn://10.65.10.50/branches/R_10_00@24149 c028cbd2-c16b-5b4b-a496-9718f37d4682
2017-10-26 09:07:39 +00:00

39 lines
666 B
C

/*
** SAP OC-LIBRARY
** Copyright (c) 2013 SAP AG or an SAP affiliate company. 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__ */