Bugzilla Database Basics
- To connect to your database: bash#mysql-u root
- To see all the “spreadsheets” (tables): mysql>show tables from bugs;
- To see columns from table: mysql> show columns from table;
- To see all the data in a table: mysql> select * from table;
- others:
mysqlgt; select * from table where (column = “some info”);
mysqlgt; select * from table where (column != “some info”);
mysqlgt; show columns from bugs
(exceedingly long output truncated here)
| bug_status| enum(‘UNCONFIRMED’,'NEW’,'ASSIGNED’,'REOPENED’,'RESOLVED’,'VERIFIED’
mysqlgt; ALTER table bugs CHANGE bug_status bug_status
Related posts:
- What is the Bug List page? Change Columns: by selecting this link, you can show all...
- What is The Bugzilla Query Page? The Bugzilla Query Page is the heart and soul of...
- I try to add myself as a user, but Bugzilla always tells me my password is wrong Certain version of MySQL (notably, 3.23.29 and 3.23.30) accidentally disabled...
- How to Write a Useful Bug Report with Bugzilla Useful bug reports are ones that get bugs fixed. A...
- I think I’ve set up MySQL permissions correctly, but bugzilla still can’t connect. Try running MySQL from its binary: “mysqld –skip-grant-tables”. This will...
Related posts brought to you by Yet Another Related Posts Plugin.