PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ ShpDumperCloseTable()

int ShpDumperCloseTable ( SHPDUMPERSTATE state)

Definition at line 2182 of file pgsql2shp-core.c.

2183 {
2184  int ret = SHPDUMPEROK;
2185 
2186  /* Clear the current batch fetch resource */
2187  PQclear(state->fetchres);
2188 
2189  /* If a geo column is present, generate the projection file */
2190  if (state->geo_col_name)
2191  ret = projFileCreate(state);
2192 
2193  /* Close the DBF and SHP files */
2194  if (state->dbf)
2195  DBFClose(state->dbf);
2196  if (state->shp)
2197  SHPClose(state->shp);
2198 
2199  return ret;
2200 }
void SHPAPI_CALL DBFClose(DBFHandle psDBF)
Definition: dbfopen.c:599
static int projFileCreate(SHPDUMPERSTATE *state)
Creates ESRI .prj file for this shp output It looks in the spatial_ref_sys table and outputs the srte...
#define SHPDUMPEROK
void SHPAPI_CALL SHPClose(SHPHandle hSHP)
Definition: shpopen.c:881
PGresult * fetchres

References shp_dumper_state::dbf, DBFClose(), shp_dumper_state::fetchres, shp_dumper_state::geo_col_name, projFileCreate(), shp_dumper_state::shp, SHPClose(), and SHPDUMPEROK.

Referenced by main(), and pgui_action_export().

Here is the call graph for this function:
Here is the caller graph for this function: