-------------------------------------------------------------------- */ msSDELayerCreateItems */ -------------------------------------------------------------------- */ Inits the stuff we'll be querying from SDE */ -------------------------------------------------------------------- */
| 2051 | /* Inits the stuff we'll be querying from SDE */ |
| 2052 | /* -------------------------------------------------------------------- */ |
| 2053 | int msSDELayerCreateItems(layerObj *layer, int nt){ |
| 2054 | int status; |
| 2055 | /* status = msSDELayerCreateItems(layer, 0); */ |
| 2056 | status = msSDELayerInitItemInfo(layer); |
| 2057 | if (status != MS_SUCCESS) { |
| 2058 | msSetError( MS_MISCERR, |
| 2059 | "Unable to create SDE column info", |
| 2060 | "msSDELayerCreateItemsInfo()"); |
| 2061 | return(MS_FAILURE); |
| 2062 | } |
| 2063 | return (MS_SUCCESS); |
| 2064 | } |
| 2065 | |
| 2066 | /* -------------------------------------------------------------------- */ |
| 2067 | /* msSDELayerGetItems */ |
nothing calls this directly
no test coverage detected