https://github.com/jeffbourdier/dumprows
Database Utility Map-Producing Read-Only Web Service
https://github.com/jeffbourdier/dumprows
c cgi database linux query sql windows
Last synced: 5 months ago
JSON representation
Database Utility Map-Producing Read-Only Web Service
- Host: GitHub
- URL: https://github.com/jeffbourdier/dumprows
- Owner: jeffbourdier
- License: mit
- Created: 2021-03-06T19:02:44.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T21:12:04.000Z (about 2 years ago)
- Last Synced: 2024-05-29T12:10:42.090Z (about 2 years ago)
- Topics: c, cgi, database, linux, query, sql, windows
- Language: C
- Homepage:
- Size: 149 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
DUMPROWS (Database Utility Map-Producing Read-Only Web Service) is a [CGI](https://en.wikipedia.org/wiki/Common_Gateway_Interface) program that allows a geospatial database to be queried using a web browser.
Home Page: https://jeffbourdier.github.io/dumprows
### Building on Windows
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.)
### Building on Linux
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/`.