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

Function msJoinClose

mapjoin.c:134–155  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132}
133
134int msJoinClose(joinObj *join)
135{
136 switch(join->connectiontype) {
137 case(MS_DB_XBASE):
138 return msDBFJoinClose(join);
139 break;
140 case(MS_DB_CSV):
141 return msCSVJoinClose(join);
142 break;
143 case(MS_DB_MYSQL):
144 return msMySQLJoinClose(join);
145 break;
146 case(MS_DB_POSTGRES):
147 return msPOSTGRESQLJoinClose(join);
148 break;
149 default:
150 break;
151 }
152
153 msSetError(MS_JOINERR, "Unsupported join connection type.", "msJoinClose()");
154 return MS_FAILURE;
155}
156
157/* */
158/* XBASE join functions */

Callers 1

freeJoinFunction · 0.85

Calls 5

msDBFJoinCloseFunction · 0.85
msCSVJoinCloseFunction · 0.85
msMySQLJoinCloseFunction · 0.85
msPOSTGRESQLJoinCloseFunction · 0.85
msSetErrorFunction · 0.85

Tested by

no test coverage detected