pleets / sqlwebmanager
Web application for managing databases
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Language:JavaScript
pkg:composer/pleets/sqlwebmanager
Requires
- php: ^5.6 || ^7.0
- pleets/dronephp: 2.0.*
This package is not auto-updated.
Last update: 2025-10-20 13:13:45 UTC
README
SQL Web Manger
Minimalist SQL IDE
About
SQLWebManager is a web application for managing your MySQL, Oracle and SQLServer databases build on PHP.
System requirements
SQLWebManager Framework requires PHP 5.6 or later; we recommend using the latest PHP version whenever possible.
Installation
You can install SQLWebManager via composer. A copy of composer.phar is given with the lastest version of SQLWebManager. Run the following command in your shell.
php composer.phar install
Go to install/scripts/ and execute the script mysql.sql, oracle.sql or sqlsever.sql depending of your choice. Then set the database connection on config/database.config.php. The following is the schema of the database file.
return [ 'default' => [ 'dbname' => '', 'dbuser' => '', 'dbpass' => '', 'dbhost' => 'localhost', 'driver' => '', // database driver 'dbchar' => 'utf8' ], ];
Set the following driver depeding your choice.
| Engine | Driver |
|---|---|
| mysql | Mysqli |
| oracle | Oci8 |
| sqlserver | Sqlsrv |
If you install the application in the root of your server, change the folling line on config/application.config.php
'base_path' => (dirname(dirname($_SERVER['PHP_SELF'])) == "/") ? "" : dirname(dirname($_SERVER['PHP_SELF'])),
to
'base_path' => (dirname(dirname($_SERVER['PHP_SELF'])) == "/") ? "" : "",
License
The SQLWebManager IDE is open-source software licensed under the MIT license.