- Easly query your database
- Secure access with password (also your password is remembered between sessions)
- Queries log
- SQL Editor auto resizable
- Mobile friendly
- Extremely lightweight (4,58 KB vs 38,5 KB of phpMiniAdmin)
- Download dbeetle.php file
- example:
wget https://raw.githubusercontent.com/FranklyRocks/dbeetle/main/dbeetle.php
- example:
- Copy/Upload it to your webserver public directory (www or public_html or whatever...)
- Open in your browser
http://yoursite.com/dbeetle.php
Recommended: For additional security you may edit dbeetle.php file and set some password (see $PASSWORD
variable)
- MySQL:
sudo apt-get install php-mysql
on Debian or enableextension=pdo_mysql
in php.ini on Windows - SQLite:
sudo apt-get install php-sqlite3
on Debian or enableextension=pdo_sqlite
in php.ini on Windows - Postgres:
sudo apt-get install php-pgsql
on Debian or enableextension=pdo_pgsql
in php.ini on Windows
Set $PASSWORD
, $LOG_PATH
, and $PDO
based on your environment requirementes.
$PASSWORD = "";
$LOG_PATH = "queries.json";
$PDO = new PDO("sqlite:app.db");