Difference between revisions of "Database"

From Things and Stuff Wiki
Jump to navigation Jump to search
Line 39: Line 39:
 
=== Web interfaces ===
 
=== Web interfaces ===
 
* [http://www.phpmyadmin.net/home_page/index.php phpMyAdmin]
 
* [http://www.phpmyadmin.net/home_page/index.php phpMyAdmin]
 +
** [http://www.phpmyadmin.net/documentation/ docs]
 +
** [http://wiki.phpmyadmin.net/pma/Welcome_to_phpMyAdmin_Wiki wiki]
  
 
* [http://www.chive-project.com/ Chive]
 
* [http://www.chive-project.com/ Chive]

Revision as of 21:06, 23 June 2012


MySQL

Commands

show databases;
use [db name];
show tables;
flush privileges;
GRANT ALL ON USERDATABASE.* TO 'USERNAME'; [1]

Create command list for showing user grants [2]

SELECT CONCAT("SHOW GRANTS FOR '",user,"'@'",host,"';") FROM mysql.user WHERE host!='localhost';

Web interfaces

Admin

Tools

https://github.com/tanin47/php_db_migrate

  • http://dbug.ospinto.com/ - "PHP version of ColdFusion’s cfdump. Outputs colored and structured tabular variable information. Variable types supported are: Arrays, Classes/Objects, Database and XML Resources."

Other