PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ ShpDumperCloseTable()

int ShpDumperCloseTable ( SHPDUMPERSTATE state)

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

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