A was checking out the new Workbench today after I saw this blog
post http://wb.mysql.com/?p=1169
It all worked great and very easy. Nice clean code that
helps out the PHP Developer.
example:
$host="localhost";
$port=3306;
$socket="";
$user="";
$password="";
$dbname="";
$con = new mysqli($host, $user, $password, $dbname, $port,
$socket)
or die ('Could not connect to the database
server' . mysqli_connect_error());
//$con->close();
$query = "SELECT * FROM exampledb";
if ($stmt = $con->prepare($query)) {
$stmt->execute();
$stmt->bind_result($field1, $field2);
while ($stmt->fetch()) {
…
The 2011 DevProConnections CommunityChoice Awards
has two categories that include nominations for MySQL Workbench
!
You can support MySQL Workbench with your vote. The two
categories that include Workbench are, “Component Set” (page 1 #
7) and “IDE” (page 2 #14).
The survey is available here and information about workbench is always
available here: http://www.mysql.com/products/workbench/
The MySQL Documentation Team is looking for a senior technical writer. Main areas to cover are MySQL Workbench and MySQL Connectors. The position is for EMEA.
Candidates should be prepared to work intensively with our developers and support organization when writing documentation. Being a distributed team, we meet mostly on IRC and coordinate our work through email and versioning systems such as Subversion. The base format we're using is DocBook XML, and we're not just writing but also processing and publishing all our documentation ourselves.
This means you should …
[Read more]The MySQL Documentation Team is looking for a senior technical writer. Main areas to cover are MySQL Workbench and MySQL Connectors. The position is for EMEA.
Candidates should be prepared to work intensively with our developers and support organization when writing documentation. Being a distributed team, we meet mostly on IRC and coordinate our work through email and versioning systems such as Subversion. The base format we're using is DocBook XML, and we're not just writing but also processing and publishing all our documentation ourselves.
This means you should …
[Read more]
One of the many new things that is being introduced this week are
some great new external tools for managing MySQL servers. These
are available in MySQL Workbench under the name
MySQL Workbench Utilities.
It is a package of easy-to-use utilities for maintenance and
administration of MySQL servers. These utilities encapsulate a
set of primitive commands bundling them so that you can perform
macro operations with a single command.
Some of the key features of MySQL Workbench Utilities are:
- Plugin for MySQL Workbench 5.2.31
- Available under the GPLv2 license
- Written in Python
- Easily to extend using the supplied library
How Does It Work?
There are two ways to access the utilities from within the MySQL
Workbench.
You can click on the drop down arrow icon to the right of the …
Introducing MySQL Workbench Utilities
One of the many new things that is being introduced during the
Collaborate 2011 and 2011 MySQL Users’ Conference are some great
new additions to some of the external tools for managing MySQL
servers. One of those tools receiving updates is the MySQL
Workbench.
One of the jewels in a long list of new features is the addition
of new command-line utilities to help you administer your
servers. The new feature is called MySQL Workbench Utilities. It
is a package of easy-to-use utilities for maintenance and
administration of MySQL servers. These utilities incapsulate a
set of primitive commands bundling them so that you can perform
macro operations with a single command. Some of the key features
in MySQL Workbench Utilities include:
- Plugin for MySQL Workbench 5.2.31
- Available under the GPLv2 license
- Written in Python …
Yesterday I blogged about some issues with MySQL
Workbench. The problem was that CentOS 5.5 is not
supported.
So I installed RHEL6, one of the best known Enterprise Linux
distributions. It's a 30 day evaluation, but that should be
sufficient.
After some minor
issues with VirtualBox I had a working
installation. So I tried to install MySQL Workbench again. I used
'sudo yum localinstall
mysql-workbench-gpl-5.2.31a-2el6.x86_64.rpm' which failed because
of 2 unmet dependencies: pexpect and libzip.so.1
There is already a bug report in RHEL for the missing pexpect:
…
Every once in a while I use MySQL Workbench. First is was only
for Windows, then it was unstable and now it is very well usable.
Or at least that is the situation when you run on a recent Ubuntu
machine.
I'm now using CenOS 5.5 in a VirualBox VM to do some testing.
Unfortunately the download site for MySQL Workbench has RPMs for
RedHat 6 and Fedora Core 14 and some other platforms. No CentOS,
No RHEL5, only the latest Fedora en RHEL.
So I downloaded the RHEL6 RPMs and tried to install them with yum
localinstall, but that failed. So they are not backwards
compatible with 5.5.
Turns out that CentOS/RHEL 5 doesn't have the required libraries
to support MySQL Workbench.
And unfortunately CentOS 5.5 is still the latest release. So an
upgrade to CenOS 6 is not yet possible.
We already have more that 500 registrants for this MySQL web seminar. Join us and the crowd to
learn the design dos and don'ts for MySQL. We will show you how
to design, forward and reverse engineer databases including
discussions on datatypes, indexes, and foreign keys for various
application scenarios.
In this technical presentation, we will
cover:
- MySQL design basics
- Data Modeling Basics
- Physical and Logical Models
- "Dos" and "Don'ts"
- How to design MySQL for your specific application
- Datatypes
- Indexes …
- Data Modeling Basics
Once upon a time, there was a policy in MySQL not to add new
features after the beta stage.
To my surprise, MySQL Workbench 5.2.30 introduces a new feature,
the query formatter. I gave it a try. The results are not
extremely encouraging. Granted, it's a plugin and not a feature
in the core application, but nonetheless one would expect
something more stable in a GA release, especially since the
plugin features are displayed in the main menu, and unless you
have read the announcement, you couldn't easily tell the core
from the plugins.
This is what I have got in just a few minutes:
Bug #58356:
beautify function fails on CREATE TABLE
Bug #58357:
beutify function erases statement on CREATE …