MCPcopy Index your code
hub / github.com/MapServer/MapServer / sde_error

Function sde_error

mapsde.c:148–163  ·  view source on GitHub ↗

-------------------------------------------------------------------- */ sde_error */ -------------------------------------------------------------------- */ Reports more detailed error information from SDE */ -------------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

146/* Reports more detailed error information from SDE */
147/* -------------------------------------------------------------------- */
148static void sde_error(long error_code, char *routine, char *sde_routine)
149{
150 char error_string[SE_MAX_MESSAGE_LENGTH];
151
152 error_string[0] = '\0';
153 SE_error_get_string(error_code, error_string);
154
155 msSetError( MS_SDEERR,
156 "%s: %s. (%ld)",
157 routine,
158 sde_routine,
159 error_string,
160 error_code);
161
162 return;
163}
164
165
166/* -------------------------------------------------------------------- */

Callers 12

msSDELayerGetRowIDColumnFunction · 0.85
msSDELCacheAddFunction · 0.85
msSDEGetLayerInfoFunction · 0.85
sdeShapeCopyFunction · 0.85
sdeGetRecordFunction · 0.85
getSDEQueryInfoFunction · 0.85
getSDESQLConstructInfoFunction · 0.85
msSDELayerOpenFunction · 0.85
msSDELayerWhichShapesFunction · 0.85
msSDELayerNextShapeFunction · 0.85
msSDELayerGetShapeFunction · 0.85
msSDELayerInitItemInfoFunction · 0.85

Calls 1

msSetErrorFunction · 0.85

Tested by

no test coverage detected