-1

I created user called "Try" where global privileges I set it to all privileges

users table

and once I checked it and delete it with "Drop the databases that have the same names as the users." checkbox checked

check box shown

and go ahead click "go" I get this pop up

warning

and click on "OK" as soon as I clicked I get the second warning pop up which is the following

second warning

and then click on cancel but process was not canceled because the user was removed and i got the success message which is the following

success pop up

so I really wanna know that if there is any further configuration for that and if not why this happen or if it is unique problem for me only thanks in advanced

Gad
  • 113
  • 5

1 Answers1

2

There is no "Cancel" feature in MySQL. MySQL only executes SQL queries written in SQL language.

PHPMyAdmin is a convenience tool to execute SQL queries on MySQL server. When you perform an operation in PHPMyAdmin, it will execute one or more SQL queries on the server.

In this particular case, it first executes the DROP USER SQL query, and then shows a confirmation if you really want to DROP DATABASE.

There is no transaction here, so each step is executed individually.

Tero Kilkanen
  • 36,796
  • 3
  • 41
  • 63