-
Book Overview & Buying
-
Table Of Contents
Google Web Toolkit 2 Application Development Cookbook
By :
In this recipe, we are going to create a database called Sales.
Make sure that MySQL GUI Tools are installed.
Start MySQL Query Browser.
Right-click on Schemata and select Create New Schema.
![]() |
In the input dialog, enter Sales as the Schema name.
![]() |
Click on OK. A new database, Sales, is created.
It is possible to create the database from command tools, that is, without using the GUI environment. Knowledge of SQL is necessary to use the command tools. When we use the GUI tools, the required SQL command is generated automatically; but in command tools, every SQL command is written by us.
Start the MySQL Command Line Client from Start | All Programs | MySQL | MySQL Server 5.1.
Enter the root password
Execute the following command:
CREATE DATABASE Sales;
Don't forget to add a semicolon (;) after the command here. This is needed by the MySQL client to understand where the end of the command...
Change the font size
Change margin width
Change background colour

