PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ShpDumperCloseTable()

int ShpDumperCloseTable ( SHPDUMPERSTATE state)

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

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().

2198 {
2199  int ret = SHPDUMPEROK;
2200 
2201  /* Clear the current batch fetch resource */
2202  PQclear(state->fetchres);
2203 
2204  /* If a geo column is present, generate the projection file */
2205  if (state->geo_col_name)
2206  ret = projFileCreate(state);
2207 
2208  /* Close the DBF and SHP files */
2209  if (state->dbf)
2210  DBFClose(state->dbf);
2211  if (state->shp)
2212  SHPClose(state->shp);
2213 
2214  return ret;
2215 }
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 DBFClose(DBFHandle psDBF)
Definition: dbfopen.c:578
void SHPAPI_CALL SHPClose(SHPHandle hSHP)
Definition: shpopen.c:759
PGresult * fetchres
Here is the call graph for this function:
Here is the caller graph for this function: