- Mastering phpMyAdmin 3.4 for Effective MySQL Management
- Marc Delisle
- 615字
- 2021-08-20 15:55:25
Creating a database
Before creating a table, we must ensure that we have a database for which the MySQL server's administrator has given us the CREATE
privilege. The following possibilities exist:
- The administrator has already created a database for us, and we see its name in the navigation panel; we don't have the right to create an additional database.
- We have the right to create databases from phpMyAdmin.
- We are on a shared host, and the host provider has installed a general web interface (for example, cPanel) to create MySQL databases and accounts; in this case, we should visit this web interface now and ensure we have created at least one database and one MySQL account.
The Databases panel in Server
view is the place to go to find the database creation dialog. Note that a configuration parameter, $cfg['ShowCreateDb']
, controls the display of the Create new database dialog. By default, it is set to true
, which shows the dialog.
No privileges
If you do not have the privilege to create a database, the panel displays a No privileges message under the Create new database label. This means that you must work with the databases already created for you, or ask the MySQL server's administrator to give you the necessary CREATE
privilege.
Note
If you are the MySQL server's administrator, refer to Chapter 19.
First database creation is authorized
If phpMyAdmin detects that we have the right to create a database, the dialog appears as shown in the following screenshot:

In the input field, a suggested database name appears if the $cfg['SuggestDBName']
parameter is set to TRUE
, which is the default setting. The suggested database name is built according to the privileges we possess.
If we are restricted to the use of a prefix, the prefix might be suggested in the input field. (A popular choice for this prefix is the username, which might or might not be followed by an underscore character.) Note that, in this case, the prefix is followed by an ellipsis mark, added by phpMyAdmin. We should remove this ellipsis mark and complete the input field with an appropriate name.

The Collation choice can be left unchanged for now. With this dialog, we could pick a default character set and collation for this database. This setting can be changed later (refer to Chapter 9 for more information on this).
We will assume here that we have the right to create a database named marc_book. We enter marc_book in the input field and click on Create. Once the database has been created, we will see the following screen:

Notice the following:
- The title of the main panel has changed to reflect the fact that we are now located in this database
- A confirmation message regarding the creation is displayed
- The navigation panel has been updated; we see marc_book
- By default, the SQL query sent to the server by phpMyAdmin to create the database is displayed in color
As the generated queries could be large and take much of the on-screen room, the $cfg['MaxCharactersInDisplayedSQL']
acts as a limit. Its default value of 1000
should be a good balance between seeing too few and seeing too many of the queries, especially when doing large imports.
It is important to examine the phpMyAdmin feedback to ascertain the validity of the operations we make through the interface. This way, we can detect errors like typos in the names, or creation of a table in the wrong database. phpMyAdmin retrieves error messages from the MySQL server and displays them on the interface.
- Python概率統計
- Hyper-V 2016 Best Practices
- Java面向對象程序開發及實戰
- C語言從入門到精通(第4版)
- Building a Quadcopter with Arduino
- 零基礎輕松學SQL Server 2016
- C語言課程設計
- 數據結構與算法分析(C++語言版)
- Instant Nancy Web Development
- 運用后端技術處理業務邏輯(藍橋杯軟件大賽培訓教材-Java方向)
- 微課學人工智能Python編程
- jQuery for Designers Beginner's Guide Second Edition
- 從Excel到Python數據分析:Pandas、xlwings、openpyxl、Matplotlib的交互與應用
- Python第三方庫開發應用實戰
- Java Web開發基礎與案例教程