Database management in a single PHP file in Adminer

https://www.adminer.org/
Adminer (previously called phpMinAdmin) is a full-featured database management tool written in PHP. In contrast to phpMyAdmin, it consists of a file that is ready to be deployed to the target server. Administrators can be used for MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, Oracle, Firebird, SimpleDB, Elasticsearch and MongoDB.

Why is Adminer better than phpMyAdmin?
Replace phpMyAdmin with Adminer, you will get a simple user interface, better support for MySQL functions, higher performance and higher security. See detailed comparison.

The priority of administrator development is: 1. Security; 2. User experience; 3. Performance; 4. Function set; 5. Size.

Features
Use username and password to connect to the database server.
Choose an existing database or create a new database.
List fields, indexes, foreign keys and table triggers.
Change the name, engine, collation, AUTO_INCREMENT and opinion table
Alt name, type, Organize, comment, and default value columns
Drag and drop tables and columns
Create, change, delete, and search through indexes (including full text) Create, change, delete
, and link lists through foreign keys Create, change, delete
, and select from views
Create, change , Delete and call stored procedures and functions
Create, change and delete triggers
List data in the table and search, summarize, sort and limit the results
Insert new records, update and delete existing records
Support all data types through file transfer, blob
from Execute any SQL commands in text fields or files
Export table structure, data, views, routines, and databases as SQL or CSV
Print database schema connected via foreign keys
Display processes and kill them
Display users and permissions and make changes
Display variables and documents Link
Manage events and table partitioning (MySQL 5.1)
mode, sequence, user type (PostgreSQL)
extensive customization options
Requirements Use
with MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, Oracle, SimpleDB, Elasticsearch, MongoDB-improved driver
PHP 5 and 7
support multiple languages through enabled sessions , including Chinese (43) -Create new translations
Free for commercial and non-commercial use (Apache License or GPL 2)
Security is the first priority in Adminer development. Administrators are not allowed to connect to the database without a password, and it limits the rate of connection attempts to prevent brute force attacks. However, consider making Adminer unable to enter the public to allow access to its IP address through a whitelist, password-protected Web server access, thereby implementing a security plug-in (for example, an OTP is required), or through a custom login method. You can also delete Adminer (if you no longer need it), it is just a file and can be easily uploaded later. Adminer has some security vulnerabilities in the past, so whenever Adminer tells you that a new version is available, it should be updated (if you cannot update, please ask the administrator).
 

Guess you like

Origin blog.csdn.net/allway2/article/details/109598538