Postcards From My Life

Lint I find in my mind's belly-button.
  • EPK
  • Consulting
  • Resume
  • Nerd Herding
  • Talks
  • CWJ 09
« Packaging Zend Framework As A Phar Revisited
Remote Developers »

SQLYog – A superficial review

Dear Reader,

SQLYog About ScreenSeeing my recent superficial review of MySQL Workbench and knowing that I like SQLyog, my buddies over at webyog pinged me and asked if I would be interested in reviewing SQLyog also. Knowing me as they do (I’ve been a beta tester for several years) they did the one thing they knew would get my attention, they gave me an enterprise license. (Actually, they replaced the one I had and had lost)

To be honest, I could do this review in my sleep. SQLYog is one of the 3-4 programs that is almost always open on my desktop when I am doing development. I’ve been using it since 2003/2004 and for raw manipulation of mysql databases, it just can’t be beat.

At least I thought I could do the review in my sleep until I started playing with it again. Since I last used it they’ve added a bunch of new features. Some of them cool but some of them not really interesting to me personally. Overall though, SQLYog is still the tool that every developer working with MySQL has to have.

Some of the features I will be describing are only available in the Enterprise version of the tool. While they are nice to have, it’s not a deal killer if they aren’t available because I’m using the COmmunity Version. SQLYog, unlike a lot of companies, has managed to remain true to the “open core” concept of making a very useful free version of their tool and then adding features to the commercial version that make life easier but aren’t necessarily “must haves”.

The Query Window

This is the window I have lived in for the past few years when creating, debugging or maintaining MySQL databases. This is where the action really happens. The upper right window is where you enter your query. Then you press F9 (or click the cute little Play button) and execute the query. If it’s a select statement (as the example is) you will see the results in the window below it.

This view gives you more than just the ability to execute a query though. The window beneath the Query window has 6 tabs that each present you with different views of either the query you just executed or the table selected to the left in the database browser. The tabs are:

  1. Result – the result set of the last query executed
  2. Profiler – An indepth look at the query you just executed including the EXPLAIN for it. This is so much more than EXPLAIN though. It gives a complete breakdown on the steps it took to execute the query. This is new since the last time I played used SQLYog but I can tell that this tab and I are going to be good friends.
  3. Messages – Any messages that would normally be returned by MySQL. For example, the number of rows affected, etc.
  4. Table Data – This shows the currently selected table on the left in a browsable, and editable, grid. Back in my FoxPro days we used to call this a “Danger browse” because it will allow you to edit the raw database.
  5. Info – Information about the currently selected table including the DDL necessary to create it.
  6. History – A complete running history of all commands executed in this query window. Very handing for scrolling back to find out where you made your last mistake.

Here are thumbnails of the different tabs described above. Click on them to see a bigger view.

SQLYog Query Window with ResultsSQLYog Query Window with ProfilerSQLYog Query Window with Messages
SQLYog Query Window with Table DataSQLYog Query Window with InfoSQLYog Query Window with History

The Query Designer

SQLYog Query DesignerOk, at first blush, this feature is a bit reminiscent of “Access” and if you look at it and have flash backs, don’t worry they pass. The resemblance however, is only superficial. The difference between this query designer and the one in the last version of Access I used (‘97?) is that this one works. In the upper window, you drag tables over from the database selected on the left. It will automatically figure out relationships for you.

Then below, you can selected tables and fields that are represented above. If you don’t enjoy writing SQL by hand or if you have a particularly nasty query you need to think through, the Query Designer is a good tool for you. it shows you the SQL for the query you are building and there is even a button to create a view from the query.

One small gripe, if you are not creating a view then the only way to use the code you have created is to copy it and past it into the query window and execute it.

Schema Designer

SQLYog Schema Designer If you read my recent my recent superficial review of MySQL Workbench then you know I love data modeling. I think in databases when designing new systems, so ERD tools are important to me. I remember a few years ago when the nice people at SQLYog told me they were going to include an ERD tool in SQLYog, I told them I wish they would put their efforts in other areas. There were already good tools available to do ERD and it just seemed a shame to tack that onto SQLYog. After seeing the finished product, I wish they had heeded my advice.

The Schema Designer included in SQLYog is a toy compared to MySQL Workbench. It would be a decent visualization tool, if it were a bit easier to use but since I have to drag each table over individually to add it to the schema, it’s cumbersome for all but the most simple of databases. Also, instead of sticking to accepted standard notation to denote relationships like MySQL did, SQLyog uses a custom notation that, while not confusing, is not necessary.

While the Schema Designer is easy to ignore in SQLYog and therefore does not count against it, it would have been nice to make this a separate tool so that those of us using better tools didn’t have to waste the resources it takes up every time SQLYog is loaded.

It’s the little things

The think I like about SQLYog the most are the little things. Things like the User Manager and the fact that if your MySQL database runs attached only to 127.0.0.1 they provide a little PHP adapter that you can drop on your server to allow you to still use it instead of having to resort to inferior tools. the user Manager, while still a bit cumbersome, even after all these years, is still better than issuing GRANT statements by hand.

Also (and this is my favorite feature because I suggested it to them way back when I was an active beta tester and they implemented it) They have a great Schema Synchronization Tool. So when you get ready to migrate your staging database into production, calling up both in the Schema Synchronization Tool will show you the differences, allow you to mark the changes you want made and then it generates the DDL necessary to make them. It truely is a powerful part of this great tool.

The Bad

There are always things I don’t like about every program. I don’t like that a couple of years ago, I upgraded my copy of SQLYog only to find out that “Execute Query” had shifted from F5 to F9. (I hate it when things like that change) As stated, I don’t particularly like the Schema Designer. As for as much as I use it, the user Manager is still very clunky. Compared to the rest of the program, where I’ve watched constant refinements in the interface, the User manager still feels like it’s stuck in 1999. Also, it would be nice if the new Query Designer allowed you to execute the query in place instead of copying it to the query window and executing it there. if you can’t figure any other way to do it guys, when I press F9 in the query designer, open a new query window for me, paste the SQL into it and execute it. it’s not an elegant solution but it would work.

Conclusion

I LOVE this program. I’ve used it for years and will use it for years to come. Yes, there are other programs on the market that do the same thing but this is the one I like so it’s the one I use.

SQLYog comes in two version. The Community Edition which is free and the Enterprise Edition which costs $118 with a year of support. Here is the complete list of features and what is included in each version.

If you have a favorite tool for working on databases, great, keep using it. if you don’t have one though, or if you are unhappy with your current tool, download the Community Edition of SQLYog and take it for a spin.

Until next time,
(l)(k)(bunny)
=C=

Related posts

  • Win free SQLYog! (3)
  • Forks!=Threads! (0)
  • XAMPP, PHP 5.3, PEAR, and PHAR (what a mess) (12)

Tags: MySQL, PHP, progralling, SQL, sqlyog

This entry was posted on Monday, July 27th, 2009 at 7:00 am and is filed under Programming, SQL. You can follow any responses to this entry through the RSS 2.0 feed.Both comments and pings are currently closed.

7 Responses to “SQLYog – A superficial review”

  1. Peter Laursen Says:
    July 27th, 2009 at 7:48 am

    “I upgraded my copy of SQLYog only to find out that “Execute Query” had shifted from F5 to F9.”

    This is configurable from program ‘preferences’. But we switched the defaults as F5 is ‘refresh’ in most Windows programs (browsers, office programs etc.). Users that want the old behaviour can have it

    To enable old behaviour go to tools .. preferences .. ‘others’ tab .. check ‘Switch F5 and F) functionalities-

    Regards
    Peter
    Webyog

  2. Peter Laursen Says:
    July 27th, 2009 at 7:49 am

    Sorry .. I meant “‘Switch F5 and F9 functionalities.” (Danish Keyboard issue)

  3. Martin Milesich Says:
    July 28th, 2009 at 10:52 am

    I love SQLYog. I have the enterprise edition. I whish they would do a version for mac.

  4. Justin Noel Says:
    July 28th, 2009 at 3:33 pm

    I’ve loved SQLYog for many years as well. I’ve forced by company to buy the enterprise version for me even though I don’t use the features. I’ve also bought it for my own non-personal use.

    Unfortunately, I have to run it with either CodeWeavers Crossover or in Windows on my Mac. I sure do wish they’d consider a Mac version. I’ll get all new licenses again, I promise!

  5. Steven Van Poeck Says:
    July 30th, 2009 at 5:53 am

    Hey,

    If you like SQLYog, you might want to check out HeidiSQL, which is visually quite close to SQLYog and is open source.
    It does not have as many features as SQLYog has, but the main stuff is in there :)

    http://www.heidisql.com/

  6. Win a free license for SQLYog, the best MySQL management program for Windows or Linux. | Postcards From My Life Says:
    August 18th, 2009 at 9:01 am

    [...] is to the PHP community. (For a detailed description of how cool it is, see my recent post “SQLYog – A Superficial Review“) I told them what I tell everyone, free is [...]

  7. Win free SQLYog! – techPortal Says:
    August 18th, 2009 at 11:40 am

    [...] is to the PHP community. (For a detailed description of how cool it is, see my recent post “SQLYog – A Superficial Review“) I told them what I tell everyone, free is [...]

  • Team Based PHP Training

  • Sponsors and Ads

  • Conferences I’m Attending

  • About Me

    cal_evansThis is my blog. Sometimes it's my deep thoughts, sometimes it's a journal of things I've learned. Every now and then it's my box of shattered dreams. Most of the time though, it's just the place I like to write. Sit with me as I show you some postcards from my life. While you are here, do me a favor and leave a comment.

    If you are looking for my contact information, bio, picture, ASL, check out my EPK.

    My name is Cal Evans and this is my blog.



    Follow me on FriendFeed!

    View Cal Evans's profile on LinkedIn

  • My First Book

  • Support PHPWomen


    US Shop | European Shop

  • What I'm Doing...

    • @ramsey I'm no fan of comcast but they never tried to charge us a per-pc fee. heck, I only connect my router directly to the modem. in reply to ramsey 3 hrs ago
    • RT @coates: Post-#ConFoo blog entry: http://bit.ly/a5SJDb #PHP 7 hrs ago
    • http://bit.ly/bo5qCY "Building the PHP MS SQL Server extension from source on Linux" 8 hrs ago
    • More updates...

  • Tags

    API article Cal Evans codeworks conference cw09 developers devzone elizabeth naramore Entrepreneurship Exim flex fun IBuildings iPod Kathy Evans linkedin Mac Management Marketing microsoft MySQL Nashville phar PHP phparchitect php developers podcampnashville podcast podcasting poem Programming Quickies respect RSS Silly-Con Valley sixty second tech software development terry chay twitter upgrade video wordpress zend zend framework

  • RSS PHP Podcasts

    • Writing Composite Zend_Form Elements
    • Preparing Custom Elements for Zend Validators
    • webcast: Introduction to Doctrine 2
    • 8 Reasons Every PHP Developer Should Love JavaScript
    • oddWeek Episode #4
    • Creating Custom Zend_Form Decorators
    • Habits of Highly Scalable Web Applications
    • PHPSPCast #6 – Ao vivo da Campus Party (Q&A)
    • php|architect podcast: oddWeek #003
    • Podcast #2010-02: Stalker Edition

  • XBox Gamer Card

  • Me

    • Best web design company
    • Cal Evans Dot Com
    • Cyrano’s Apprentice
    • Evans Internet Construction Company
    • My Life as a Child
    • PHP Podcasts
    • Sixty Second Tech

  • RSS My Blog at php|arch

    • An error has occurred; the feed is probably down. Try again later.

  • Flickr Recent Photos

    Blue Parabola Southern Office-Rear Annex is closed for snowSnow Heart@dzuelke getting ready to give his talk@fabpot talking about Dependancy Injection@derickr giving the opening keynotePeople meeting other peoplePHP Benelux Goody Bag ContentsCheck InDSCN2280The main room

  • Categories

    • Apache
    • BlogBling
    • Blogging
    • codeworks
    • Entertainment
    • Entrepreneurship
    • Flex
    • Humor
    • JavaScript
    • Long Form
    • Management
    • Marketing
    • Me
    • PHP
    • podcasting
    • Programming
    • SQL
    • Technology
    • Web 2.0
    • wordpress
    • WordPress Plugins
    • writing
    • zend framework

  • Meta

    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org


Postcards From My Life is proudly powered by WordPress
Entries (RSS) and Comments (RSS).