Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

the difference between mysql server and mysql workbench

I've instaled MySQL workbench in Windows 7 64bit. Unfortunately, I'm facing problems:

In the Object Browser, when I click on my DB and right click on tables to create one, I can not insert any column (disabled) and therefore, can not insert tables. check this: Can not create table in MySQL workbench 5.2.40

I can create table from the EER model. But even though, I faced problems when tried to connect my Java application to this database. MySQL and Java: table doesn't exist

I have searched, and not sure from this, some of what I found is that workbench have probelms with Windows 7 - 64 bit (any idea if this is correct??). The only version I found was for 68, it installed successfully but I'm having probems.

I want to downlod MySQL server but before that: Will Mysql Server give me the same features that the workbench does? I need to work with GUI (insert, delete, update,..etc).

EDIT:

Also, the table I added using the EER are not visible in the Object browser. I only can see the schema in the Object browser without any table underneath it.

like image 430
Jury A Avatar asked Jun 28 '12 15:06

Jury A


3 Answers

MySQL Workbench is a MySQL Server GUI. The two are different products. MySQL Workbench requires a MySQL Server connection for most tasks (except for data modeling). This reliance on a MySQL connection is clearer in the latest version of MySQL Workbench (6.1) than it was in 5.2.

like image 184
Philip Olson Avatar answered Oct 20 '22 19:10

Philip Olson


MySql Workbench and MySql Server both are completely different things. MySql Server is basically a database and MySql workbench is a GUI or graphical management tool which helps us interact with MySql server database.

Similarly, SQL Server Management Studio is the graphical management tool for SQL Server.

like image 41
Devinder Singh Avatar answered Oct 20 '22 20:10

Devinder Singh


Both are for manipulate the structure, queries and function, procedure, etc....

In Both you can Use DML and DDL

If you ask me I love Server even if you can create really cool designs on workbench, but basically you can do the same in both (insert, delete, update,..etc and more)

So it's up to you, I think MySQL server is a little bit lighter that Workbench, but if you want to, try it both.

Workbench looks like more friendly

like image 22
jcho360 Avatar answered Oct 20 '22 18:10

jcho360