{"id":18770788,"url":"https://github.com/rasa/sqlseer","last_synced_at":"2026-06-30T04:31:13.795Z","repository":{"id":27895975,"uuid":"31387575","full_name":"rasa/sqlseer","owner":"rasa","description":"Easily view, sort, filter, and download SQL data, using GUI, or custom written SQL or PHP.","archived":false,"fork":false,"pushed_at":"2017-07-07T21:58:29.000Z","size":75,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-04T09:24:03.681Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rasa.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-26T20:36:49.000Z","updated_at":"2016-12-27T18:49:25.000Z","dependencies_parsed_at":"2022-08-02T23:45:38.105Z","dependency_job_id":null,"html_url":"https://github.com/rasa/sqlseer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rasa/sqlseer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rasa%2Fsqlseer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rasa%2Fsqlseer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rasa%2Fsqlseer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rasa%2Fsqlseer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rasa","download_url":"https://codeload.github.com/rasa/sqlseer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rasa%2Fsqlseer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34952850,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-30T02:00:05.919Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T19:21:29.784Z","updated_at":"2026-06-30T04:31:13.778Z","avatar_url":"https://github.com/rasa.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sqlseer [![Flattr this][flatter_png]][flatter]\n\nSimple, yet powerful, MySQL report generator. Reports can be saved to .csv, .html, .txt, .xls, and .xml formats.  \nTo see Sqlseer in action, please visit [sqlseer.smithii.com](https://sqlseer.smithii.com/)\n\n\n## Quick Start\n\nFirst, install any [dependencies](#dependencies) that are needed. Then, install sqlseer:\n\n````bash\ngit clone https://github.com/rasa/sqlseer\ncd sqlseer\ncp app/configs/dbconfig.ini.example app/configs/dbconfig.ini\nvi app/configs/dbconfig.ini # add your database credentials\ncomposer install\n````\nTo secure your database credentials, run:\n````bash\nchmod 640 app/configs/dbconfig.ini\nchgrp www-data app/configs/dbconfig.ini \n````\nreplacing `www-data` with the group of your web server.\n\nFor the SQL scripts in [www/test-reports](www/test-reports) to work, the MySQL user will need to have\nCREATE/INSERT/DROP rights on the `test` database. The database does not need to be created beforehand. \n\nOne way to do this, is via the [sample_data/create-sqlseer-user.sql](sample_data/create-sqlseer-user.sql) script:\n````bash\ncd sample_data\nmysql -uuser -ppassword \u003ccreate-sqlseer-user.sql\n````\n\nLastly, set up your web server to point to `sqlseer/www`. For example, with Apache 2.3 or earlier, use:\n\n````\n\u003cVirtualHost *:80\u003e\n   ServerName sqlseer\n   DocumentRoot /path/to/sqlseer/www\n\n   \u003cDirectory /path/to/sqlseer/www\u003e\n       AllowOverride All\n       Order allow,deny\n       Allow from all\n   \u003c/Directory\u003e\n\u003c/VirtualHost\u003e\n````\n\nWith Apache 2.4, use:\n\n````\n\u003cVirtualHost *:80\u003e\n   ServerName sqlseer\n   DocumentRoot /path/to/sqlseer/www\n\n   \u003cDirectory /path/to/sqlseer/www\u003e\n       AllowOverride All\n       Require all granted\n   \u003c/Directory\u003e\n\u003c/VirtualHost\u003e\n````\n\n### Sample Data\n\nTo load the MySQL [employee][], [sakila][] and [world][] sample databases, install `make`, and then type:\n\n````bash\ncd sample_data\nmake MYSQL_OPTS=\"-u user -ppassword\"\nmake distclean\n````\n\nwhere `user` is the MySQL username, and `password` is that user's password.\n\nTo remove the employee, sakila, and world databases, type:\n\n````bash\nmake drop MYSQL_OPTS=\"-u user -ppassword\"\n````\n\n### Export Formats\n\nSqlSeer can export in the following formats:\n\n* Comma separated values (.csv)\n* HTML (.html)\n* Plain Text (tab separated values) (.txt)\n* Microsoft Excel (.xls)\n* XML (.xml) (Same as [`mysql --xml`][option_mysql_xml] output)\n* Zip (.zip)\n\n## Dependencies\n\nSqlSeer depends on the following:\n\n* A web server, such as [Apache]\n* [PHP][]\n* [Composer][]\n\n### Install Apache\n\nTo install Apache in Debian and Debian derivatives, type:\n\n````bash\nsudo apt-get install apache2\n````\n\n### Install PHP\n\nTo install PHP in Debian and Debian derivatives, type:\n\n````bash\nsudo apt-get install php5\n````\n\n### Install Composer\n\nTo install Composer in `~/bin` type:\n\n````bash\ncurl -sS https://getcomposer.org/installer | php -- --install-dir=~/bin --filename=composer\n````\n\nTo install Composer in `/usr/local/bin` type:\n\n````bash\ncurl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer\n````\n\n## Contributing\n\nTo contribute to this project, please see [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Bugs\n\nTo view existing bugs, or report a new bug, please see [issues](../../issues).\n\n## Changelog\n\nTo view the version history for this project, please see [CHANGELOG.md](CHANGELOG.md).\n\n## License\n\nThis project is [MIT licensed](LICENSE).\n\n## Contact\n\nThis project was created and is maintained by [Ross Smith II][] [![endorse][endorse_png]][endorse]\n\nFeedback, suggestions, and enhancements are welcome.\n\n[Ross Smith II]: mailto:ross@smithii.com \"ross@smithii.com\"\n[flatter]: https://flattr.com/submit/auto?user_id=rasa\u0026url=https%3A%2F%2Fgithub.com%2Frasa%2Fsqlseer\n[flatter_png]: http://button.flattr.com/flattr-badge-large.png \"Flattr this\"\n[endorse]: https://coderwall.com/rasa\n[endorse_png]: https://api.coderwall.com/rasa/endorsecount.png \"endorse\"\n\n[option_mysql_xml]: http://dev.mysql.com/doc/refman/5.6/en/mysql-command-options.html#option_mysql_xml\n[Apache]: http://httpd.apache.org/\n[PHP]: http://php.net/\n[Composer]: https://getcomposer.org/\n[employee]: https://dev.mysql.com/doc/employee/en/\n[world]: https://dev.mysql.com/doc/world-setup/en/\n[sakila]: http://dev.mysql.com/doc/sakila/en/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frasa%2Fsqlseer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frasa%2Fsqlseer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frasa%2Fsqlseer/lists"}