Questions tagged [adminer]

Adminer is an open-source database management tool distributed in a single PHP file. It supports MySQL, PostgreSQL, SQLite, MS SQL and Oracle. It focuses mainly on security, user experience, performance and feature set.

Overview

Adminer (formerly phpMinAdmin) is a full-featured database management tool written in PHP. Conversely to , it consist of a single file ready to deploy to the target server.
It is available for and .

It focuses mainly on :

  1. security
  2. User experience
  3. Performance
  4. Feature set
  5. Size

Features

  • Connect to a database server with username and password
  • Select an existing database or create a new one
  • List fields, indexes, foreign keys and triggers of table
  • Change name, engine, collation, auto_increment and comment of table
  • Alter name, type, collation, comment and default values of columns
  • Add and drop tables and columns
  • Create, alter, drop and search by indexes including fulltext
  • Create, alter, drop and link lists by foreign keys
  • Create, alter, drop and select from views
  • Create, alter, drop and call stored procedures and functions
  • Create, alter and drop triggers
  • List data in tables with search, aggregate, sort and limit results
  • Insert new records, update and delete the existing ones
  • Supports all data types, blobs through file transfer
  • Execute any SQL command from a text field or a file
  • Export table structure, data, views, routines, databases to SQL or CSV
  • Print database schema connected by foreign keys
  • Show processes and kill them
  • Display users and rights and change them
  • Display variables with links to documentation
  • Manage events and table partitions (MySQL 5.1)
  • Schemas, sequences, user types (PostgreSQL)
  • Extensive customization options

Requirements

  • Works with MySQL, PostgreSQL, SQLite, MS SQL, Oracle, SimpleDB, Elasticsearch, MongoDB
  • Supports PHP 5 with enabled sessions
  • Available in Arabic, Catalan, Chinese, Czech, Dutch, English, Estonian, French, German, Hungarian, Italian, Japanese, Lithuanian, Persian, Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Tamil, Turkish, Ukrainian, ... (32)
  • Free for commercial and non-commercial use (Apache License or GPL 2)

Links

143 questions
0
votes
2 answers

Changing database in Adminer editor

Since the new versions of phpmyadmin no longer work for me (always times out) I am switching to Adminer. I have multiple databases within MySQL and have not found a way to switch between them using the Adminer Editor like you can using the Adminer…
James Harrison
  • 119
  • 1
  • 2
  • 9
0
votes
2 answers

Importing CSV to MySQL database

I'm trying to import a csv to a mysql table in my db but I keep getting this error: Unknown column '' in 'field list' INSERT INTO `job_budget_report` (`Job_Num`, `Description`, `EngWeekly`, `EngTTD`, `EngBudget`, `DesignWeekly`, `DesignTTD`,…
MikeOscarEcho
  • 535
  • 2
  • 12
  • 27
0
votes
1 answer

Adminer mssql errors

I'm trying to get all tables to display in Adminer so I don't have to remote into the Windows Server to look at tables and query from the MS SQL DB that I'm working with. I got this error when I click "Select Tablename" to view the data on any…
MikeOscarEcho
  • 535
  • 2
  • 12
  • 27
0
votes
1 answer

Managing Wordpress Database (Adminer)

Im new to wordpress and having difficulties in managing the database. I have installed "Adminer" plugin to manage the database. I already created a new table called "usersupp_admin". Now I also created a custom template that will connect to this…
Clyde Winux
  • 63
  • 1
  • 4
  • 12
0
votes
2 answers

Re-ording the display order of tables in MySQL

This is purely for convenience. New tables are added to the bottom of the list of tables when using Adminer (http://www.adminer.org/) - how can I make these tables appear at the top of the list? These tables are my own and not part of the CMS I use,…
Jake N
  • 10,535
  • 11
  • 66
  • 112
-1
votes
2 answers

Using multiple where clauses to check two tables

So I have a sql statement in a php file that is related to a form that gets input from a user. When they enter in a genre though it updates all the records in that column and not the specific one they chose. The original statement I had that works…
Zatoichi
  • 11
  • 5
-2
votes
1 answer

How to fix adminer.php json error with mysql 5.7 as it is working correctly with other data types?

I have upgraded mysql from 5.2 to 5.7 and also upgraded adminer.php version as suggested on mysql site and adminer docs.Adminer is working fine with all other data types but not working with json data.NO write query is not working with adminer in…
sultania23
  • 322
  • 3
  • 11
-3
votes
1 answer

Create table for each lines SQL

I have a .txt file with a few thousand lines. On every line, there is the name of a table. For example, this is an extract of the text file: dog cat elephant banana blueberry ....... I want to create tables with the title dog, cat, elephant... How…
alb
  • 57
  • 1
  • 8
1 2 3
9
10