DUMPROWS (Database Utility Map-Producing Read-Only Web Service) is a CGI program that allows a geospatial database to be queried using a web browser.
Home Page: https://jeffbourdier.github.io/dumprows
It is easiest to build DUMPROWS on Windows from the Visual Studio solution (dumprows.sln
) included with this repository. If desired, DUMPROWS can be built from the Developer Command Prompt (Run as administrator!) as follows:
cl dumprows.c jb.c /link /OUT:"C:\Program Files (x86)\dumprows.exe"
The executable file dumprows.exe
will be output into C:\Program Files (x86)\
. (If you want to run DUMPROWS without using the full path, C:\Program Files (x86)\
can be added to the PATH
environment variable.)
The following command should build DUMPROWS on Linux:
sudo gcc -o /usr/local/bin/dumprows dumprows.c jb.c
The executable file dumprows
will be output into /usr/local/bin/
.