[SOLVED]mysql-workbench 5.2.38

hi,
mysql-workbench 5.2.36 is not working anymore, and 5.2.37 does not compile, the latest 38 i tried to compile it but it gives me this error when configure
configure: error: Python C development headers/libraries not found
so please someone help me compiling it plz
Last edited by shalaby (2012-02-26 11:43:23)

Great to hear that :-)
How long did the compilation take on your computer? If it was really long, maybe an unofficial user repo would be nice to have:
Comment by: shaman on Wed, 15 Feb 2012 11:35:42 +0000
Finally I uploaded version of mysql-workbench working fine with me. Since it is building long time, during next days I will find the way to make a custom repository for it, so that you will be able to download and install it without need to build it yourself

Similar Messages

  • [solved] mysql-workbench where? (moved to AUR ~ 12/14/2011)

    Is it just me, or is this package no longer to be found in the community repo? I'm only seeing it on AUR. Thanks,
    Last edited by rollenwiese (2012-02-15 00:35:02)

    Yes, it has been dropped to AUR, as the first comment on https://aur.archlinux.org/packages.php? … mments=all says:
    Comment by: trontonic on Wed, 14 Dec 2011 22:49:54 +0000
    Moved from [community] in connection with the Christmas Cleanup https://wiki.archlinux.org/index.php/Christmas_Cleanup.

  • [SOLVED] building mysql-workbench with lib32-libpng12

    i installed the mysql-workbench package because i want a gui interface for making query tables (from large database and non-repetitive queries):
    $ pacman -Ss mysql-workbench
    community/mysql-workbench 5.1.18-1
    MySQL Workbench is a cross-platform, visual database design tool developed
    by MySQL.
    however, running the app gives the following error:
    $ mysql-workbench
    /usr/bin/mysql-workbench-bin: error while loading shared libraries: libpng12.so.0: cannot open shared object file: No such file or directory
    looking for a solution gives:
    $ pacman -Ss libpng
    extra/libpng 1.4.0-2
    A collection of routines used to create PNG format graphics files
    community/lib32-libpng 1.4.0-2 (lib32)
    A collection of routines used to create PNG format graphics files
    i cant use libpng12 because i am running x86_64.  as far as i can tell lib32-libpng12 should satisfy the dependency.  however i still run into the error after installing this package and re-installing mysql-workbench.  is there a configuration file somewhere that i can edit to tell the app that it needs lib32-libpng12 not libpng12?  also, what is the reason that libpng (already installed) cannot be used instead of libpng12?  is it possible that libpng12 is inaccessible due to the presence of libpng?
    Last edited by poopship21 (2010-02-08 01:14:27)

    you don't need any libpn12 or lib32-libpng12.
    mysql-workbench doesn't even link it to libpng and other dependency is linking to it.
    mysql-workbench is linking to /usr/lib/libgtk-x11-2.0.so.0 (gtk2) who link to cairo, who needs libpng.
    you have other cairo package installed? pacman -Qs cairo. if so, is your job to rebuild any unsupported packages
    Last edited by wonder (2010-02-07 22:59:45)

  • [SOLVED] mySQL third party database?

    I think it is surprising that mySQL is threated as a third-party database or has Oracle sold it?
    "You can also connect to schemas for selected third-party (non-Oracle) databases, such as MySQL, Microsoft SQL Server, Sybase Adaptive Server, Microsoft Access, and IBM DB2, and view metadata and data."
    I have searched most of the documentation and the forum and now I think that I have to install some kind of driver (jdbc perhaps) and then I get a new tab in the connection view where I now only have the oracle tab.
    I tried to use the oracle connection tab and use a jdbc connection string: jdbc:mysql://localhost:3306/cdr?useUnicode=true&characterEncoding=utf-8 both with and without the unicode string but it did not work.
    Found it -> Help -> Developer Center -> JDBE my SQL driver (from my mind, just restarting it)
    Edited by: 992601 on 2013-mar-07 23:26

    Oracle SQL Developer is the IDE for Oracle Database. We also have an extension for TimesTen. But primarily any database support for databases other than Oracle is provided to assist with migrating you from those databases to Oracle.
    The MySQL team has it's own IDE, it's called the MySQL Workbench.
    http://dev.mysql.com/downloads/workbench/5.2.html
    You'll notice it does not support Oracle Database.

  • [solved] MySQL Connector C++ 1.0.5

    Hello everyone,
    I'm trying to connect to a MySQL db via C++. MySQL has the connector and API available for this. In the process of building this I've run into some troubles/questions.
    First off is that MySQL states that MySQL Workbench uses this connector:
    MySQL wrote:Note that MySQL Workbench is successfully using MySQL Connector/C++.
    source (at the bottom of the page) but I can't seem to find any files which are created by the connector itself.
    Second is that when I create a package file it contains files that - I think - shouldn't be included (or at least not in those directories).
    PKGBUILD used:
    pkgname=mysql-connector-c++
    pkgver=1.0.5
    pkgrel=1
    pkgdesc="MySQL Connector/C++ is a MySQL database connector for C++"
    arch=(i686)
    url="http://dev.mysql.com/doc/refman/5.1/en/connector-cpp.html"
    license=('gpl')
    depends=('mysql-clients')
    makedepends=('cmake>=2.4' 'glibc>=2.2.3')
    source=(http://download.softagency.net/MySQL/Downloads/Connector-C++/$pkgname-$pkgver.tar.gz)
    md5sums=('f0ad6655f3ea7db8df3215fa928cba03') #generate with 'makepkg -g'
    build() {
    cd "$srcdir/$pkgname-$pkgver"
    # remove file that is included in release but should be generated by cmake
    rm cppconn/config.h
    # remove some possible old cmake cache
    rm CMakeCache.txt
    # patch for use with gcc-4.4
    patch -p0 < ${startdir}/mysql-connector-cpp-1.0.5-gcc44.patch
    cmake -G "Unix Makefiles" .
    make clean
    make || return 1
    make DESTDIR="$pkgdir/" install
    # vim:set ts=2 sw=2 et:
    output of pacman -Qlp mysql-connector-c++-1.0.5-1-i686.pkg.tar.gz
    mysql-connector-c++ /usr/
    mysql-connector-c++ /usr/local/
    mysql-connector-c++ /usr/local/ANNOUNCEMENT
    mysql-connector-c++ /usr/local/COPYING
    mysql-connector-c++ /usr/local/README
    mysql-connector-c++ /usr/local/include/
    mysql-connector-c++ /usr/local/include/cppconn/
    mysql-connector-c++ /usr/local/include/cppconn/build_config.h
    mysql-connector-c++ /usr/local/include/cppconn/config.h
    mysql-connector-c++ /usr/local/include/cppconn/connection.h
    mysql-connector-c++ /usr/local/include/cppconn/datatype.h
    mysql-connector-c++ /usr/local/include/cppconn/driver.h
    mysql-connector-c++ /usr/local/include/cppconn/exception.h
    mysql-connector-c++ /usr/local/include/cppconn/metadata.h
    mysql-connector-c++ /usr/local/include/cppconn/parameter_metadata.h
    mysql-connector-c++ /usr/local/include/cppconn/prepared_statement.h
    mysql-connector-c++ /usr/local/include/cppconn/resultset.h
    mysql-connector-c++ /usr/local/include/cppconn/resultset_metadata.h
    mysql-connector-c++ /usr/local/include/cppconn/statement.h
    mysql-connector-c++ /usr/local/include/cppconn/warning.h
    mysql-connector-c++ /usr/local/include/mysql_connection.h
    mysql-connector-c++ /usr/local/include/mysql_driver.h
    mysql-connector-c++ /usr/local/lib/
    mysql-connector-c++ /usr/local/lib/libmysqlcppconn-static.a
    mysql-connector-c++ /usr/local/lib/libmysqlcppconn.so
    mysql-connector-c++ /usr/local/lib/libmysqlcppconn.so.1
    mysql-connector-c++ /usr/local/lib/libmysqlcppconn.so.1.0.5
    The files bothering me are:
    /usr/local/ANNOUNCEMENT
    /usr/local/COPYING
    /usr/local/README
    Anyone who can enlighten me?:rolleyes:
    Thanks in advance,
    Arjan Gelderblom
    Last edited by Bloged (2009-11-17 09:27:49)

    Bloged wrote:
    Thanks wonder for your reply.
    How do I move files using PKGBUILD? I've found an install -D command but that looks at best at copying the file:
    install -D COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
    Another question is that the patch that is executed is only for gcc-4.4 is there a way to have an if statement for that?
    no. we don't have any other version in our repo and that patch will work also with older gcc
    Edit: a simple solution is to copy them using install -D and then remove them... is this the correct sollution?
    yes. and remove the others two files as well.

  • MySql WorkBench crashes when saving, creating new stored procedure.

    Process:         MySQLWorkbench [5284]
    Path:            /Applications/MySQLWorkbench.app/Contents/MacOS/MySQLWorkbench
    Identifier:      com.oracle.mysql.workbench
    Version:         6.2.3 (1)
    Code Type:       X86 (Native)
    Parent Process:  launchd [270]
    Responsible:     MySQLWorkbench [5284]
    User ID:         501
    Date/Time:       2014-10-08 19:38:53.715 +0530
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  5E7DB8A9-29C7-B596-C2A8-0C0A1784765D
    Sleep/Wake UUID: F9E2CCB6-389C-448C-B322-1ECED6B8EEA5
    Crashed Thread:  19  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000fefff000
    VM Regions Near 0xfefff000:
        CG shared images       00000000c871f000-00000000c8727000 [   32K] r--/r-- SM=SHM 
    --> VM_ALLOCATE            00000000fefff000-00000000ff000000 [    4K] rw-/rwx SM=COW 
        Submap                 00000000ffff0000-00000000ffff1000 [    4K] r--/r-- SM=PRV  process-only VM submap
    Application Specific Information:
    Performing @selector(perform:) from sender MFToolBarActionItemImpl 0x7e72dcb0
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x97b1f7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x956eed8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x956ef042 pthread_cond_timedwait_relative_np + 47
    3   com.apple.FinderKit           0x9a9329ed TConditionVariable::WaitWithTimeout(TMutex&, unsigned long long, bool&) + 107
    4   com.apple.FinderKit           0x9a92e105 TIconFetcher::Fetch() + 211
    5   com.apple.FinderKit           0x9a92df2a UIconFetcher::Prefetch(TFENodeVector const&, TFENode const&, unsigned long, unsigned long, bool) + 117
    6   com.apple.FinderKit           0x9a92deb0 UIconFetcher::PrefetchIcons(TFENodeVector const&, unsigned long) + 56
    7   com.apple.FinderKit           0x9aa4459f -[FILocationPopUp setTargetNode:] + 161
    8   com.apple.FinderKit           0x9aa10b30 -[FIFinderViewGutsController setTargetNode:withViewStyle:] + 710
    9   com.apple.FinderKit           0x9aa106d8 -[FIFinderViewGutsController setTargetNode:] + 64
    10  com.apple.FinderKit           0x9aa11d3d -[FIFinderViewGutsController deferredRetargetAndReloadForNode:] + 188
    11  com.apple.FinderKit           0x9aa12247 -[FIFinderViewGutsController urlResolutionCompleted:] + 212
    12  com.apple.Foundation           0x95b5e9f2 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke + 49
    13  com.apple.CoreFoundation       0x9729b5a4 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 20
    14  com.apple.CoreFoundation       0x9717d04b _CFXNotificationPost + 3435
    15  com.apple.Foundation           0x95b4d4df -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    16  com.apple.Foundation           0x95b6aa9e -[NSNotificationCenter postNotificationName:object:] + 55
    17  com.apple.FinderKit           0x9aa0cdb2 -[FI_FinderURLResolver resolutionCompleted:] + 193
    18  libobjc.A.dylib               0x998cb2af -[NSObject performSelector:withObject:] + 70
    19  com.apple.Foundation           0x95bb3772 __NSThreadPerformPerform + 318
    20  com.apple.CoreFoundation       0x971f2b5f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    21  com.apple.CoreFoundation       0x971e395b __CFRunLoopDoSources0 + 235
    22  com.apple.CoreFoundation       0x971e305e __CFRunLoopRun + 1022
    23  com.apple.CoreFoundation       0x971e29ea CFRunLoopRunSpecific + 394
    24  com.apple.CoreFoundation       0x971e284b CFRunLoopRunInMode + 123
    25  com.apple.HIToolbox           0x9397ab5d RunCurrentEventLoopInMode + 259
    26  com.apple.HIToolbox           0x9397a777 ReceiveNextEventCommon + 163
    27  com.apple.HIToolbox           0x9397a6bd _BlockUntilNextEventMatchingListInModeWithFilter + 92
    28  com.apple.AppKit               0x981d9349 _DPSNextEvent + 1602
    29  com.apple.AppKit               0x981d8870 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    30  com.apple.AppKit               0x98556edc -[NSApplication _realDoModalLoop:peek:] + 828
    31  com.apple.AppKit               0x98556b8d -[NSApplication _doModalLoop:peek:] + 209
    32  com.apple.AppKit               0x98555556 -[NSApplication runModalForWindow:] + 235
    33  com.apple.AppKit               0x98888db7 -[NSSavePanel runModal] + 403
    34  libmforms.dylib               0x01d52b49 filechooser_run_modal(mforms::FileChooser*) + 148
    35  libmforms.dylib               0x01d21e7d mforms::FileChooser::run_modal() + 27
    36  libwbpublic.be.dylib           0x007bac76 save_file(MySQLEditor*) + 56
    37  libwbpublic.be.dylib           0x007c6163 boost::detail::function::void_function_obj_invoker1<boost::_bi::bind_t<void, void (*)(MySQLEditor*), boost::_bi::list1<boost::_bi::value<MySQLEditor*> > >, void, mforms::ToolBarItem*>::invoke(boost::detail::function::function_buffer&, mforms::ToolBarItem*) + 17
    38  libmforms.dylib               0x01d942e0 boost::function1<void, mforms::ToolBarItem*>::operator()(mforms::ToolBarItem*) const + 36
    39  libmforms.dylib               0x01d9428d boost::signals2::detail::signal1_impl<void, mforms::ToolBarItem*, boost::signals2::optional_last_value<void>, int, std::less<int>, boost::function<void (mforms::ToolBarItem*)>, boost::function<void (boost::signals2::connection const&, mforms::ToolBarItem*)>, boost::signals2::mutex>::slot_invoker::m_invoke(boost::shared_ptr<boost::signal s2::detail::connection_body<std::pair<boost::signals2::detail::slot_meta_group, boost::optional<int> >, boost::signals2::slot1<void, mforms::ToolBarItem*, boost::function<void (mforms::ToolBarItem*)> >, boost::signals2::mutex> > const&, boost::signals2::detail::void_type const*) const + 43
    40  libmforms.dylib               0x01d941a5 boost::signals2::detail::slot_call_iterator_t<boost::signals2::detail::signal1_ impl<void, mforms::ToolBarItem*, boost::signals2::optional_last_value<void>, int, std::less<int>, boost::function<void (mforms::ToolBarItem*)>, boost::function<void (boost::signals2::connection const&, mforms::ToolBarItem*)>, boost::signals2::mutex>::slot_invoker, std::_List_iterator<boost::shared_ptr<boost::signals2::detail::connection_body< std::pair<boost::signals2::detail::slot_meta_group, boost::optional<int> >, boost::signals2::slot1<void, mforms::ToolBarItem*, boost::function<void (mforms::ToolBarItem*)> >, boost::signals2::mutex> > >, boost::signals2::detail::connection_body<std::pair<boost::signals2::detail::slo t_meta_group, boost::optional<int> >, boost::signals2::slot1<void, mforms::ToolBarItem*, boost::function<void (mforms::ToolBarItem*)> >, boost::signals2::mutex> >::dereference() const + 57
    41  libmforms.dylib               0x01d9412a void boost::signals2::optional_last_value<void>::operator()<boost::signals2::detail: :slot_call_iterator_t<boost::signals2::detail::signal1_impl<void, mforms::ToolBarItem*, boost::signals2::optional_last_value<void>, int, std::less<int>, boost::function<void (mforms::ToolBarItem*)>, boost::function<void (boost::signals2::connection const&, mforms::ToolBarItem*)>, boost::signals2::mutex>::slot_invoker, std::_List_iterator<boost::shared_ptr<boost::signals2::detail::connection_body< std::pair<boost::signals2::detail::slot_meta_group, boost::optional<int> >, boost::signals2::slot1<void, mforms::ToolBarItem*, boost::function<void (mforms::ToolBarItem*)> >, boost::signals2::mutex> > >, boost::signals2::detail::connection_body<std::pair<boost::signals2::detail::slo t_meta_group, boost::optional<int> >, boost::signals2::slot1<void, mforms::ToolBarItem*, boost::function<void (mforms::ToolBarItem*)> >, boost::signals2::mutex> > >(boost::signals2::detail::slot_call_iterator_t<boost::signals2::detail::signal 1_impl<void, mforms::ToolBarItem*, boost::signals2::optional_last_value<void>, int, std::less<int>, boost::function<void (mforms::ToolBarItem*)>, boost::function<void (boost::signals2::connection const&, mforms::ToolBarItem*)>, boost::signals2::mutex>::slot_invoker, std::_List_iterator<boost::shared_ptr<boost::signals2::detail::connection_body< std::pair<boost::signals2::detail::slot_meta_group, boost::optional<int> >, boost::signals2::slot1<void, mforms::ToolBarItem*, boost::function<void (mforms::ToolBarItem*)> >, boost::signals2::mutex> > >, boost::signals2::detail::connection_body<std::pair<boost::signals2::detail::slo t_meta_group, boost::optional<int> >, boost::signals2::slot1<void, mforms::ToolBarItem*, boost::function<void (mforms::ToolBarItem*)> >, boost::signals2::mutex> >, boost::signals2::detail::slot_call_iterator_t<boost::signals2::detail::signal1_ impl<void, mforms::ToolBarItem*, boost::signals2::optional_last_value<void>, int, std::less<int>, boost::function<void (mforms::ToolBarItem*)>, boost::function<void (boost::signals2::connection const&, mforms::ToolBarItem*)>, boost::signals2::mutex>::slot_invoker, std::_List_iterator<boost::shared_ptr<boost::signals2::detail::connection_body< std::pair<boost::signals2::detail::slot_meta_group, boost::optional<int> >, boost::signals2::slot1<void, mforms::ToolBarItem*, boost::function<void (mforms::ToolBarItem*)> >, boost::signals2::mutex> > >, boost::signals2::detail::connection_body<std::pair<boost::signals2::detail::slo t_meta_group, boost::optional<int> >, boost::signals2::slot1<void, mforms::ToolBarItem*, boost::function<void (mforms::ToolBarItem*)> >, boost::signals2::mutex> >) const + 30
    42  libmforms.dylib               0x01d928d8 boost::signals2::detail::signal1_impl<void, mforms::ToolBarItem*, boost::signals2::optional_last_value<void>, int, std::less<int>, boost::function<void (mforms::ToolBarItem*)>, boost::function<void (boost::signals2::connection const&, mforms::ToolBarItem*)>, boost::signals2::mutex>::operator()(mforms::ToolBarItem*) + 386
    43  libmforms.dylib               0x01d9242b boost::signals2::signal1<void, mforms::ToolBarItem*, boost::signals2::optional_last_value<void>, int, std::less<int>, boost::function<void (mforms::ToolBarItem*)>, boost::function<void (boost::signals2::connection const&, mforms::ToolBarItem*)>, boost::signals2::mutex>::operator()(mforms::ToolBarItem*) + 37
    44  libmforms.dylib               0x01d9203c mforms::ToolBarItem::callback() + 42
    45  libmforms.dylib               0x01d95499 -[MFToolBarActionItemImpl perform:] + 28
    46  libobjc.A.dylib               0x998cb2af -[NSObject performSelector:withObject:] + 70
    47  com.apple.AppKit               0x984058a5 -[NSApplication sendAction:to:from:] + 438
    48  com.apple.AppKit               0x984056ad -[NSControl sendAction:to:] + 102
    49  com.apple.AppKit               0x98454c7b -[NSCell _sendActionFrom:] + 159
    50  com.apple.AppKit               0x9846ff2a -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2465
    51  com.apple.AppKit               0x9846f161 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 513
    52  com.apple.AppKit               0x9846e785 -[NSControl mouseDown:] + 690
    53  com.apple.AppKit               0x983eaa9d -[NSWindow sendEvent:] + 11953
    54  com.apple.AppKit               0x9838691d -[NSApplication sendEvent:] + 4034
    55  com.apple.AppKit               0x981cb1bc -[NSApplication run] + 823
    56  com.apple.AppKit               0x981b3ff8 NSApplicationMain + 1165
    57  com.oracle.mysql.workbench     0x00077475 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x97b20992 kevent64 + 10
    1   libdispatch.dylib             0x9189f899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib             0x9189f532 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib         0x97b1af7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x97b1a16c mach_msg + 68
    2   com.apple.CoreFoundation       0x971e3bf9 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x971e31d1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x971e29ea CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x971e284b CFRunLoopRunInMode + 123
    6   com.apple.Foundation           0x95bb95b9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
    7   com.apple.AppKit               0x9849da10 -[NSAnimation(NSInternal) _runBlocking] + 463
    8   com.apple.AppKit               0x9849d827 -[NSAnimation(NSInternal) _animationThread] + 79
    9   com.apple.AppKit               0x9849d7bc __42-[NSAnimation(NSInternal) _runInNewThread]_block_invoke + 36
    10  libdispatch.dylib             0x918a076b _dispatch_call_block_and_release + 15
    11  libdispatch.dylib             0x9189d386 _dispatch_client_callout + 50
    12  libdispatch.dylib             0x9189f443 _dispatch_root_queue_drain + 257
    13  libdispatch.dylib             0x918a070e _dispatch_worker_thread2 + 39
    14  libsystem_pthread.dylib       0x956eddab _pthread_wqthread + 336
    15  libsystem_pthread.dylib       0x956f1cce start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib         0x97b20046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x956eddcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x956f1cce start_wqthread + 30
    Thread 4:: GRTDispatcher
    0   libsystem_kernel.dylib         0x97b1f7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x956eed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x956f0c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libglib-2.0.0.dylib           0x0019c1f3 g_cond_wait_until + 133
    4   libglib-2.0.0.dylib           0x00137e66 g_async_queue_unlock + 206
    5   libglib-2.0.0.dylib           0x00138048 g_async_queue_timed_pop + 186
    6   libwbpublic.be.dylib           0x007d9532 bec::GRTDispatcher::worker_thread(void*) + 378
    7   libglib-2.0.0.dylib           0x001834f5 g_thread_proxy + 161
    8   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib         0x97b1af7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x97b1a16c mach_msg + 68
    2   com.apple.CoreFoundation       0x971e3bf9 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x971e31d1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x971e29ea CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x971e284b CFRunLoopRunInMode + 123
    6   com.apple.AppKit               0x98382b88 _NSEventThread + 283
    7   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 6:: timer
    0   libsystem_kernel.dylib         0x97b1fb76 __semwait_signal + 10
    1   libsystem_c.dylib             0x96e1bfb7 nanosleep$UNIX2003 + 219
    2   libglib-2.0.0.dylib           0x001846a7 g_usleep + 75
    3   libwbpublic.be.dylib           0x007d18fb bec::TimerActionThread::main_loop() + 77
    4   libwbpublic.be.dylib           0x007d1803 bec::TimerActionThread::start(void*) + 75
    5   libglib-2.0.0.dylib           0x001834f5 g_thread_proxy + 161
    6   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 7:: GRTDispatcher
    0   libsystem_kernel.dylib         0x97b1f7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x956eed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x956f0c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libglib-2.0.0.dylib           0x0019c1f3 g_cond_wait_until + 133
    4   libglib-2.0.0.dylib           0x00137e66 g_async_queue_unlock + 206
    5   libglib-2.0.0.dylib           0x00138048 g_async_queue_timed_pop + 186
    6   libwbpublic.be.dylib           0x007d9532 bec::GRTDispatcher::worker_thread(void*) + 378
    7   libglib-2.0.0.dylib           0x001834f5 g_thread_proxy + 161
    8   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 8:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x97b1af7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x97b1a16c mach_msg + 68
    2   com.apple.CoreFoundation       0x971e3bf9 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x971e31d1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x971e29ea CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x971e284b CFRunLoopRunInMode + 123
    6   com.apple.Foundation           0x95bb7355 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation           0x95bb71ce -[NSThread main] + 45
    8   com.apple.Foundation           0x95bb7126 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 9:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x97b1f7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x956eed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x956f0bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore       0x95247ae4 JSC::BlockAllocator::blockFreeingThreadMain() + 276
    4   com.apple.JavaScriptCore       0x9523ee1c ***::threadEntryPoint(void*) + 76
    5   com.apple.JavaScriptCore       0x9523edb0 ***::wtfThreadEntryPoint(void*) + 16
    6   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 10:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x97b1f7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x956eed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x956f0bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore       0x952484eb JSC::GCThread::waitForNextPhase() + 123
    4   com.apple.JavaScriptCore       0x95248378 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore       0x9523ee1c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore       0x9523edb0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x97b1f7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x956eed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x956f0bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore       0x952484eb JSC::GCThread::waitForNextPhase() + 123
    4   com.apple.JavaScriptCore       0x95248378 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore       0x9523ee1c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore       0x9523edb0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x97b1f7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x956eed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x956f0bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore       0x952484eb JSC::GCThread::waitForNextPhase() + 123
    4   com.apple.JavaScriptCore       0x95248378 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore       0x9523ee1c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore       0x9523edb0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 13:: GRTDispatcher
    0   libsystem_kernel.dylib         0x97b1f7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x956eed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x956f0c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libglib-2.0.0.dylib           0x0019c1f3 g_cond_wait_until + 133
    4   libglib-2.0.0.dylib           0x00137e66 g_async_queue_unlock + 206
    5   libglib-2.0.0.dylib           0x00138048 g_async_queue_timed_pop + 186
    6   libwbpublic.be.dylib           0x007d9532 bec::GRTDispatcher::worker_thread(void*) + 378
    7   libglib-2.0.0.dylib           0x001834f5 g_thread_proxy + 161
    8   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib         0x97b1fb76 __semwait_signal + 10
    1   libsystem_c.dylib             0x96e1bfb7 nanosleep$UNIX2003 + 219
    2   libglib-2.0.0.dylib           0x001846a7 g_usleep + 75
    3   libwbbase.dylib               0x003f365b ThreadedTimer::main_loop() + 55
    4   libwbbase.dylib               0x003f3427 ThreadedTimer::start(void*) + 17
    5   libglib-2.0.0.dylib           0x001834f5 g_thread_proxy + 161
    6   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 15:: CVDisplayLink
    0   libsystem_kernel.dylib         0x97b1af7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x97b1a16c mach_msg + 68
    2   com.apple.framework.IOKit     0x9112070c io_connect_method + 424
    3   com.apple.framework.IOKit     0x910ba44f IOConnectCallMethod + 546
    4   com.apple.framework.IOKit     0x910ba70b IOConnectCallStructMethod + 84
    5   com.apple.IOAccelerator       0x99a5b640 IOAccelContextSubmitDataBuffers + 232
    6   libGPUSupportMercury.dylib     0x997e139b gpusSubmitDataBuffers + 133
    7   com.apple.driver.AppleIntelHD5000GraphicsGLDriver 0x40349005 IntelCommandBuffer::getNew(GLDContextRec*) + 43
    8   com.apple.driver.AppleIntelHD5000GraphicsGLDriver 0x40345386 GenContext::prepareCommandBuffer() + 32
    9   com.apple.driver.AppleIntelHD5000GraphicsGLDriver 0x40348e69 intelSubmitCommands + 216
    10  com.apple.driver.AppleIntelHD5000GraphicsGLDriver 0x4034a241 gldPresentFramebufferData + 152
    11  GLEngine                       0x9b720590 glSwap_Exec + 96
    12  com.apple.opengl               0x97d843fb CGLFlushDrawable + 67
    13  com.apple.QuartzCore           0x91162ae4 view_draw(_CAView*, double, CVTimeStamp const*, bool) + 4610
    14  com.apple.QuartzCore           0x911618b8 view_display_link(double, CVTimeStamp const*, void*) + 148
    15  com.apple.QuartzCore           0x9116174b link_callback + 278
    16  com.apple.CoreVideo           0x960d0506 CVDisplayLink::performIO(CVTimeStamp*) + 288
    17  com.apple.CoreVideo           0x960cf4ff CVDisplayLink::runIOThread() + 871
    18  com.apple.CoreVideo           0x960cf180 startIOThread(void*) + 159
    19  libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    20  libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    21  libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 16:: GRTDispatcher
    0   libsystem_kernel.dylib         0x97b1f7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x956eed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x956f0c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libglib-2.0.0.dylib           0x0019c1f3 g_cond_wait_until + 133
    4   libglib-2.0.0.dylib           0x00137e66 g_async_queue_unlock + 206
    5   libglib-2.0.0.dylib           0x00138048 g_async_queue_timed_pop + 186
    6   libwbpublic.be.dylib           0x007d9532 bec::GRTDispatcher::worker_thread(void*) + 378
    7   libglib-2.0.0.dylib           0x001834f5 g_thread_proxy + 161
    8   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib         0x97b20046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x956eddcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x956f1cce start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib         0x97b20046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x956eddcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x956f1cce start_wqthread + 30
    Thread 19 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   ???                           0xfefff000 0 + 4278185984
    1   com.apple.desktopservices     0x9813e2cc CopyIconRefForSizes(__CFURL const*, unsigned long, OpaqueIconRef*&) + 41
    2   com.apple.desktopservices     0x98136eb7 TFSInfo::CopyIconRef(unsigned long, OpaqueIconRef*&, bool&) const + 583
    3   com.apple.desktopservices     0x981347ba TFSInfo::GetIconRef(TPropertyReference&, TCountedPtr<TFSVolumeInfo> const&, unsigned long, bool&) const + 40
    4   com.apple.desktopservices     0x981356e3 TFSInfo::GetProperty(unsigned long, TPropertyReference&, TCountedPtr<TFSVolumeInfo> const&, unsigned long, bool&) const + 97
    5   com.apple.desktopservices     0x980bbbfe TNode::GetProperty(unsigned long, TPropertyReference&, unsigned long) const + 1266
    6   com.apple.desktopservices     0x980cbe5a TNode::GetProperty(unsigned long, TPropertyReference&, OpaqueNodeRequest* const&, unsigned long) const + 72
    7   com.apple.desktopservices     0x980fa3fd GetNodeProperty(OpaqueNodeRef*, unsigned long, TPropertyReference&, OpaqueNodeRequest*, unsigned long) + 192
    8   com.apple.desktopservices     0x980a8777 NodeGetPropertyAsIconRef + 74
    9   com.apple.FinderKit           0x9a8b7195 TFENode::Icon(unsigned long, unsigned long, short*, bool) const + 337
    10  com.apple.FinderKit           0x9a8b703d TFENode::Icon(unsigned long) const + 55
    11  com.apple.FinderKit           0x9a92dd12 TIconFetcher::FetchIcons(TFENodeVector const&) const + 56
    12  com.apple.FinderKit           0x9a92e5e7 TIconFetcher::Main() + 553
    13  com.apple.FinderKit           0x9a92dfdd ___ZN12TIconFetcher5FetchEv_block_invoke + 100
    14  libdispatch.dylib             0x918a076b _dispatch_call_block_and_release + 15
    15  libdispatch.dylib             0x9189d386 _dispatch_client_callout + 50
    16  libdispatch.dylib             0x9189f443 _dispatch_root_queue_drain + 257
    17  libdispatch.dylib             0x918a070e _dispatch_worker_thread2 + 39
    18  libsystem_pthread.dylib       0x956eddab _pthread_wqthread + 336
    19  libsystem_pthread.dylib       0x956f1cce start_wqthread + 30
    Thread 20:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib         0x97b1fb76 __semwait_signal + 10
    1   libsystem_c.dylib             0x96e1bfb7 nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib             0x96e1be62 usleep$UNIX2003 + 60
    3   com.apple.AppKit               0x9844da4c -[NSUIHeartBeat _heartBeatThread:] + 2318
    4   com.apple.Foundation           0x95bb71ce -[NSThread main] + 45
    5   com.apple.Foundation           0x95bb7126 __NSThread__main__ + 1426
    6   libsystem_pthread.dylib       0x956ec5fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x956ec485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x956f1cf2 thread_start + 34
    Thread 19 crashed with X86 Thread State (32-bit):
      eax: 0x00000009  ebx: 0x959f35eb  ecx: 0xb0b3c762  edx: 0x00000001
      edi: 0xb0b3c960  esi: 0xb0b3c9f0  ebp: 0xb0b3ca58  esp: 0xb0b3c72c
       ss: 0x00000023  efl: 0x00010202  eip: 0xfefff000   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0xfefff000
    Logical CPU:     2
    Error Code:      0x00000015
    Trap Number:     14
    Binary Images:
       0x6f000 -    0xdbfff +com.oracle.mysql.workbench (6.2.3 - 1) <2765CC4C-A45B-3C20-BC45-5DB2C54F68B7> /Applications/MySQLWorkbench.app/Contents/MacOS/MySQLWorkbench
      0x133000 -   0x21bfeb +libglib-2.0.0.dylib (3303) <3116D359-3426-3F61-B2F9-450417634FCA> /Applications/MySQLWorkbench.app/Contents/Frameworks/libglib-2.0.0.dylib
      0x239000 -   0x239ffd +libgthread-2.0.0.dylib (3303) <5961B07A-C925-3F03-99C6-59A8DC561956> /Applications/MySQLWorkbench.app/Contents/Frameworks/libgthread-2.0.0.dylib
      0x23e000 -   0x359ff7 +com.sun.Scintilla (1.0) <9A74C350-1FF4-3373-8BCC-88371B35C726> /Applications/MySQLWorkbench.app/Contents/Frameworks/Scintilla.framework/Versio ns/A/Scintilla
      0x3ef000 -   0x41dff3 +libwbbase.dylib (1) <F6F012C6-6119-3ADA-9F8B-13E57323C94D> /Applications/MySQLWorkbench.app/Contents/Frameworks/libwbbase.dylib
      0x449000 -   0x4f4ff3 +libgrt.dylib (1) <42E72546-021C-3102-BDDF-006BE243F078> /Applications/MySQLWorkbench.app/Contents/Frameworks/libgrt.dylib
      0x5a9000 -   0x610ff3 +libmysql.canvas.dylib (1) <4483BAEB-1E41-30DE-BBC0-D501586C2E07> /Applications/MySQLWorkbench.app/Contents/Frameworks/libmysql.canvas.dylib
      0x6ce000 -   0x6e2ffb +libcdbc.dylib (1) <68B0F24C-E9DC-3C40-B92A-16C1A6C6C5B5> /Applications/MySQLWorkbench.app/Contents/Frameworks/libcdbc.dylib
      0x702000 -   0xa87fff +libwbpublic.be.dylib (1) <AA30B579-7D0F-3D17-A170-3D3DFF5F139F> /Applications/MySQLWorkbench.app/Contents/Frameworks/libwbpublic.be.dylib
      0xf06000 -  0x1601ff7 +libwbprivate.be.dylib (1) <09D6F65B-C54C-398C-BDC1-95B878309F38> /Applications/MySQLWorkbench.app/Contents/Frameworks/libwbprivate.be.dylib
    0x1d1f000 -  0x1e40ffb +libmforms.dylib (1) <F8609BB3-C342-3AF3-92FB-24607561BF1C> /Applications/MySQLWorkbench.app/Contents/Frameworks/libmforms.dylib
    0x1fe2000 -  0x2049fff +com.oracle.mysql.workbench.WBExtras (1.0) <22F306B8-39FF-334A-BCD6-FAE77FE998C0> /Applications/MySQLWorkbench.app/Contents/Frameworks/WBExtras.framework/Version s/A/WBExtras
    0x20cf000 -  0x21b6ffe  org.python.python (2.7.5 - 2.7.5) <CEEA0C30-0A80-3055-8380-2702560D0190> /System/Library/Frameworks/Python.framework/Versions/2.7/Python
    0x2207000 -  0x2208fff +libgmodule-2.0.0.dylib (3303) <CD572830-C546-37BB-8A34-3752649E6B7D> /Applications/MySQLWorkbench.app/Contents/Frameworks/libgmodule-2.0.0.dylib
    0x220f000 -  0x47a8ff7 +mysql.parser.dylib (1) <97B0B1F3-6940-38CD-93F9-A638A91FFF33> /Applications/MySQLWorkbench.app/Contents/Frameworks/mysql.parser.dylib
    0x4a3c000 -  0x4a40ffb +libpcrecpp.0.dylib (1) <6C12DAD8-71D1-31D6-97DC-525C9D143DC4> /Applications/MySQLWorkbench.app/Contents/Frameworks/libpcrecpp.0.dylib
    0x4a49000 -  0x4a5cff3 +libtinyxml.dylib (1) <CE2171E4-9CB1-3E73-92A5-7E8224032A8A> /Applications/MySQLWorkbench.app/Contents/Frameworks/libtinyxml.dylib
    0x4a70000 -  0x4a8fff4 +libpcre.1.dylib (2) <49CF4D85-C23F-3565-8D99-79595FC90E8D> /Applications/MySQLWorkbench.app/Contents/Frameworks/libpcre.1.dylib
    0x4a96000 -  0x4b54ff3 +libcairo.2.dylib (0) <5E5AFB69-5C20-37CF-A5E9-756FA63D1877> /Applications/MySQLWorkbench.app/Contents/Frameworks/libcairo.2.dylib
    0x4b81000 -  0x4cd0fe9 +libpixman-1.0.dylib (0) <1690B90B-76DD-397A-A9B2-54E09FE01BD3> /Applications/MySQLWorkbench.app/Contents/Frameworks/libpixman-1.0.dylib
    0x4ce5000 -  0x4d10ffa +libpng12.0.dylib (0) <A828AF30-BA47-3195-91C4-0112FA35F876> /Applications/MySQLWorkbench.app/Contents/Frameworks/libpng12.0.dylib
    0x4d1a000 -  0x4d85ff7 +libmysqlcppconn.7.1.1.4.dylib (0) <3D2E513F-5386-3DBA-AED6-BC30BA9CC651> /Applications/MySQLWorkbench.app/Contents/Frameworks/libmysqlcppconn.7.1.1.4.dy lib
    0x4df3000 -  0x507effb +libmysqlclient.18.dylib (18) <4EE3497B-8C86-3E28-A47F-7F542EB91CFF> /Applications/MySQLWorkbench.app/Contents/Frameworks/libmysqlclient.18.dylib
    0x51c9000 -  0x5239ffb +libctemplate.0.dylib (2.2) <1430E75E-3032-791A-5948-49FFDB23B7DE> /Applications/MySQLWorkbench.app/Contents/Frameworks/libctemplate.0.dylib
    0x52e1000 -  0x52f6ffb +libvsqlitepp.0.dylib (0) <38E99F2E-B7D7-3CA9-A02F-0CC177132A32> /Applications/MySQLWorkbench.app/Contents/Frameworks/libvsqlitepp.0.dylib
    0x531a000 -  0x6046fff +libgdal.1.dylib (0) <4ABF3042-228F-3407-BC04-302D065A8706> /Applications/MySQLWorkbench.app/Contents/Frameworks/libgdal.1.dylib
    0x62da000 -  0x6333ff0 +libproj.0.dylib (0) <4D7F86B1-2644-33B7-A11E-47A80E38FD51> /Applications/MySQLWorkbench.app/Contents/Frameworks/libproj.0.dylib
    0x6344000 -  0x634fffc +libzip.1.0.0.dylib (0) <39E8E56B-861B-3D97-9E5B-2CBB1FDAEFBD> /Applications/MySQLWorkbench.app/Contents/Frameworks/libzip.1.0.0.dylib
    0x7c1b000 -  0x7c21ffb +db.grt.dylib (1) <12EEBDC8-B442-3CB5-BDD5-959D2980B509> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.grt.dylib
    0x7c2c000 -  0x7cb7ff3 +db.mysql.grt.dylib (1) <4B4D2041-D404-323A-BA65-1780ACFF307F> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.mysql.grt.dylib
    0x7d01000 -  0x7d04ffb  strop.so (76.100.1) <29C19707-E781-3E34-8884-83B69CDA5A83> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/strop.so
    0x7d09000 -  0x7d0cffe  operator.so (76.100.1) <2A24B38F-D09C-3C15-B14E-A3923F8033D7> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/operator.so
    0x7d11000 -  0x7d11ffc  _functools.so (76.100.1) <8B6B250E-E34B-3860-A08F-0C790A5019B4> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_functools.so
    0x7d15000 -  0x7d16fff  _locale.so (76.100.1) <52B51C26-D880-3321-9B8A-7F0E922D21BF> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_locale.so
    0x7d1a000 -  0x7d1cfff  _collections.so (76.100.1) <22BAA559-DAE3-3104-8D20-BC0044F39116> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_collections.so
    0x7d21000 -  0x7d21fff +_ARC4.so (0) <91687EDB-4272-3F90-8971-B86AD03C5F43> /Applications/MySQLWorkbench.app/Contents/Resources/libraries/Crypto/Cipher/_AR C4.so
    0x8fe5000 -  0x900effb +db.mysql.parser.grt.dylib (1) <591EA3E7-D40F-3B40-971C-46913EB75274> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.mysql.parser.grt.dylib
    0x9033000 -  0x904fffb +db.mysql.query.grt.dylib (1) <561161D6-F083-3030-A66E-8A9B8112CCEB> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.mysql.query.grt.dylib
    0x906e000 -  0x912fff3 +db.mysql.sqlparser.grt.dylib (1) <0D38B2C7-AD33-3863-A7F3-96DB43C86187> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.mysql.sqlparser.grt.dylib
    0x91eb000 -  0x933cff7 +libsql.parser.dylib (1) <19ABFB99-85AB-3B7C-8356-91479DD64220> /Applications/MySQLWorkbench.app/Contents/Frameworks/libsql.parser.dylib
    0x93cc000 -  0x9418fff +wb.model.grt.dylib (1) <D8EF8A1E-17AB-3955-9DFB-A32839DAEBFF> /Applications/MySQLWorkbench.app/Contents/PlugIns/wb.model.grt.dylib
    0x944d000 -  0x9493ff3 +wb.mysql.import.grt.dylib (1) <1BD8E598-C538-3988-A5EA-B4F88C75B8CB> /Applications/MySQLWorkbench.app/Contents/PlugIns/wb.mysql.import.grt.dylib
    0x955f000 -  0x967cff7 +_mforms.so (1) <A684ABC4-3F08-3EAE-A3B3-2DA97139F893> /Applications/MySQLWorkbench.app/Contents/Resources/libraries/_mforms.so
    0x9847000 -  0x984bffd  itertools.so (76.100.1) <BB875822-F784-3D55-B27F-16FEF82F8B2F> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/itertools.so
    0x9852000 -  0x9853fff  _heapq.so (76.100.1) <EB82769D-06EE-3191-B3D9-2768E7730649> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_heapq.so
    0x9858000 -  0x9859ffb  time.so (76.100.1) <F45A4F21-964E-3CE2-9FB8-CBF3339C9B88> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/time.so
    0x989f000 -  0x98a1ffe  select.so (76.100.1) <61F400FB-79A1-3E03-B4C2-3A064885200C> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/select.so
    0x98a6000 -  0x98a7ffc  fcntl.so (76.100.1) <339A6F31-4760-31D8-ACF4-F77CC1C4D977> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/fcntl.so
    0x98ab000 -  0x98aefff  _struct.so (76.100.1) <F88E14EB-8604-3D26-A6DF-FEA85A80952E> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_struct.so
    0x98b4000 -  0x98b6fff  binascii.so (76.100.1) <842C430F-9BB0-3610-9545-3F94CE0C08D0> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/binascii.so
    0x98ba000 -  0x98bbffd  cStringIO.so (76.100.1) <A9144569-57E5-3CCC-9036-1090842E85B0> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/cStringIO.so
    0x98bf000 -  0x98c1fff  _multiprocessing.so (76.100.1) <34718BD6-72E4-37EA-9398-3B427AD25178> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_multiprocessing.so
    0x98c6000 -  0x98d0fff  cPickle.so (76.100.1) <AFA21217-0A1F-351C-970B-5F6C4A637CE1> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/cPickle.so
    0x9916000 -  0x9925fff  _io.so (76.100.1) <CF1D9070-1B67-36FC-986D-81CDC2505859> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_io.so
    0x9933000 -  0x9936ff0  math.so (76.100.1) <1D3A53CC-C7E6-3128-AE6E-9393621D94F5> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/math.so
    0x993b000 -  0x993cffe  _hashlib.so (76.100.1) <43C57D47-95AE-3B32-9DBB-464C6A85B56F> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_hashlib.so
    0x9940000 -  0x9941ff9  _random.so (76.100.1) <E3DE4628-CB89-3411-86E6-5DF5B5361E8C> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_random.so
    0x99c5000 -  0x99ceffc  datetime.so (76.100.1) <9CDA0E9D-F57C-3A42-94B0-509A67DE45FA> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/datetime.so
    0x99d6000 -  0x99defff  _sqlite3.so (76.100.1) <40F725D1-B1A2-3579-A038-1E5DA513AF27> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_sqlite3.so
    0x9b27000 -  0x9b2fff3  _socket.so (76.100.1) <A70A4F8F-8B9B-3A63-8FFB-E104C41D922A> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_socket.so
    0x9b38000 -  0x9b3bfff  _ssl.so (76.100.1) <04E37108-2126-3F63-B99C-EC1CCCCC13E8> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_ssl.so
    0x9b41000 -  0x9b45ffd  array.so (76.100.1) <26E74A26-B929-3955-B3F3-032FD0FAD61F> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/array.so
    0x9b4b000 -  0x9b4cff5 +_counter.so (0) <2458BD3E-9C06-31C3-8A6D-07AF59DA6268> /Applications/MySQLWorkbench.app/Contents/Resources/libraries/Crypto/Util/_coun ter.so
    0x9b4f000 -  0x9b54ff7 +_AES.so (0) <53E5A54B-063D-33EF-AB5F-368ADA8AE461> /Applications/MySQLWorkbench.app/Contents/Resources/libraries/Crypto/Cipher/_AE S.so
    0x9b97000 -  0x9b99fff  zlib.so (76.100.1) <90A50AF6-F710-3198-AA52-0489763DFCD5> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/zlib.so
    0x9b9d000 -  0x9ba8ff7 +_DES3.so (0) <280806C9-1C5C-3EB0-9F60-7145C86C1D85> /Applications/MySQLWorkbench.app/Contents/Resources/libraries/Crypto/Cipher/_DE S3.so
    0x9beb000 -  0x9beeff7 +_Blowfish.so (0) <0877DDE3-C900-3F3E-AF0F-7E61B472BFB5> /Applications/MySQLWorkbench.app/Contents/Resources/libraries/Crypto/Cipher/_Bl owfish.so
    0x9bf1000 -  0x9bf2ffd  termios.so (76.100.1) <59D05CA7-0E80-315D-91BC-160FF272B30D> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/termios.so
    0x9bf6000 -  0x9bf6ff6 +strxor.so (0) <1C060F90-8403-3995-9F0F-EE9004E224C0> /Applications/MySQLWorkbench.app/Contents/Resources/libraries/Crypto/Util/strxo r.so
    0x9bf9000 -  0x9c07ffb  _ctypes.so (76.100.1) <DC8228AC-4DEE-38A8-93EA-7356270066B9> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_ctypes.so
    0x9c51000 -  0x9c51ffe  grp.so (76.100.1) <5D60CEC5-6B82-3527-84FF-5DDB975941BC> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/grp.so
    0x9d3c000 -  0x9d40ff7  _json.so (76.100.1) <9BF5E50D-9145-394E-829F-48523B217B94> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynl oad/_json.so
    0x9e05000 -  0x9e2cfff +_cairo.so (1) <95731EDE-144C-3728-9BD7-1880ABAD0743> /Applications/MySQLWorkbench.app/Contents/Resources/libraries/_cairo.so
    0x9fc8000 -  0xa001ffb +db.mysql.diff.reporting.wbp.dylib (1) <F23BA88D-A154-3E38-B1C2-3878960FF663> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.mysql.diff.reporting.wbp.d ylib
    0xa055000 -  0xa16bffb +db.mysql.wbp.dylib (1) <E00D73CC-81C7-3F10-A831-62FFA3ECAC07> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.mysql.wbp.dylib
    0xa28f000 -  0xa306fff +db.mysql.editors.wbp.dylib (1) <24BFC837-7B92-3BC3-8B78-756FFD9F6F59> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.mysql.editors.mwbplugin/Co ntents/Frameworks/db.mysql.editors.wbp.dylib
    0xa3b3000 -  0xa3f2ffb +db.search.wbp.dylib (1) <D7F1BC58-4C7E-3D94-8F67-833154C065AB> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.search.wbp.dylib
    0xa44d000 -  0xa471fff +wb.model.editors.wbp.dylib (1) <3029A06C-1E8C-30CE-855C-68D223A5E923> /Applications/MySQLWorkbench.app/Contents/PlugIns/wb.model.editors.mwbplugin/Co ntents/Frameworks/wb.model.editors.wbp.dylib
    0xa4b3000 -  0xa4d1fff +wb.model.snippets.wbp.dylib (1) <17040CCF-C18E-3869-B500-243E8ED64F87> /Applications/MySQLWorkbench.app/Contents/PlugIns/wb.model.snippets.wbp.dylib
    0xa4ef000 -  0xa505ff7 +wb.printing.wbp.dylib (1) <443EF14A-0531-3B2B-9D9D-EB20053951D3> /Applications/MySQLWorkbench.app/Contents/PlugIns/wb.printing.mwbplugin/Content s/Frameworks/wb.printing.wbp.dylib
    0xa5dd000 -  0xa5deff5 +cl_kernels (???) <5FDD1970-A21F-4DFF-AB2A-E861AA7B3637> cl_kernels
    0xa5ec000 -  0xa5edfff +cl_kernels (???) <58D2DE5A-F568-426B-86B2-5DC79BA8D2F8> cl_kernels
    0xada1000 -  0xae8cff7  unorm8_bgra.dylib (2.3.58) <73AEEEF2-DF38-33F9-994C-2BB7A76EB027> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0xaeb8000 -  0xaeeeff3 +com.oracle.mysql.workbench.dbmysqleditors (1.0) <7DE8A01C-A668-3B89-8ABB-26EF73803DA7> /Applications/MySQLWorkbench.app/Contents/PlugIns/db.mysql.editors.mwbplugin/Co ntents/MacOS/db.mysql.editors
    0xaf0b000 -  0xaf14ff3 +com.oracle.mysql.workbench.wbmodeleditors (1.0) <4B922804-45D2-3234-A555-9D252836F90E> /Applications/MySQLWorkbench.app/Contents/PlugIns/wb.model.editors.mwbplugin/Co ntents/MacOS/wb.model.editors
    0xaf20000 -  0xaf24ff3 +com.oracle.mysql.workbench.wbprinting (1.0) <9632227F-9AD8-35AA-A844-390F7B49AFA6> /Applications/MySQLWorkbench.app/Contents/PlugIns/wb.printing.mwbplugin/Content s/MacOS/wb.printing
    0xc00a000 -  0xc02fff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0xc044000 -  0xc04fffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0xd088000 -  0xd088ff3 +cl_kernels (???) <B4216B69-4B0C-4678-B269-CE74801D4AAE> cl_kernels
    0xd097000 -  0xd097ffb +cl_kernels (???) <1BD8B991-04DB-499D-9DA0-7002726A7D3E> cl_kernels
    0xd099000 -  0xd17fff7  unorm8_rgba.dylib (2.3.58) <54C13C5A-EF13-3CB8-A736-CDA39A907F3C> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
    0xd934000 -  0xd934ffd +cl_kernels (???) <41032263-D9C5-438F-87A0-4B5B06D8FE76> cl_kernels
    0xd93a000 -  0xd93ffff +com.tee.NuFile (1.9 - 1.9) /Library/Contextual Menu Items/NuFile.plugin/Contents/MacOS/NuFile
    0xd945000 -  0xd949ff7 +org.tigris.scfinderplugin (169) <7EEC70AB-634F-D6C8-85BF-0AD1289630F3> /Library/Contextual Menu Items/SCFinderPlugin.plugin/Contents/MacOS/SCFinderPlugin
    0xd959000 -  0xd983fff  com.apple.datadetectors (5.0 - 246.0) <E78157B5-C380-3C09-8439-54F5E89209C9> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0xd9a0000 -  0xd9a1ff7 +cl_kernels (???) <E54B2CAD-3754-4898-8146-36775BDA1E8A> cl_kernels
    0xf754000 -  0xf943ffc  com.apple.WebKit2 (9537 - 9537.78.2) <7B6A5E63-15FA-3B8F-80EC-6A7703A55817> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x40000000 - 0x4045fff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (8.28.32 - 8.2.8) <E98BAE1C-BA6D-36AE-B76C-9FDD40BA1236> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD5000GraphicsGLDriver
    0x8fef7000 - 0x8ff29417  dyld (239.4) <0F2176BD-4239-3506-BA41-3B885269520E> /usr/lib/dyld
    0x90008000 - 0x90010ffe  libGFXShared.dylib (9.6.1) <632989B3-36C2-302E-8A85-A02125A9C5D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90011000 - 0x90013ffb  libRadiance.dylib (1044) <6713977E-A33A-395A-9933-719F72DF1A98> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x90014000 - 0x9001ffff  com.apple.CrashReporterSupport (10.9 - 539) <10FE9B2D-404F-32B8-B3CA-CBA3524B4CFF> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90020000 - 0x90095ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <FD423680-01A1-357A-89A7-33910A87DE65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90096000 - 0x900a1fff  libcsfde.dylib (380.70.2) <B3FC85EE-BBC2-3A20-9C45-C1ABDD063A63> /usr/lib/libcsfde.dylib
    0x900a2000 - 0x900a3ffa  libsystem_sandbox.dylib (278.11.1) <DA875837-A5C2-3004-8117-65F378E4BD03> /usr/lib/system/libsystem_sandbox.dylib
    0x900a4000 - 0x90310ff5  com.apple.AddressBook.framework (8.0 - 1371.2) <4B02A52C-E6F6-3083-89C4-1B99E27E81C6> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90311000 - 0x90745ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x90746000 - 0x907a4ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x907a8000 - 0x907a9fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x907aa000 - 0x907aeffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x907af000 - 0x90818ffa  com.apple.datadetectorscore (5.0 - 354.5) <CB793FA7-B873-39A9-855F-D86AB0C35298> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90819000 - 0x90857ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91019000 - 0x91031ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <7F3A0094-3A24-302C-9B64-C32C65750EDE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91034000 - 0x91041fff  com.apple.AppleFSCompression (56.92.1 - 1.0) <D2E7A2DF-9E5B-35E6-9CCD-0D40ADA7E021> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x91042000 - 0x91088ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91089000 - 0x910b4ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x910b5000 - 0x9112cffb  com.apple.framework.IOKit (2.0.1 - 907.100.13) <D1308EE0-96AA-3442-A27B-264F58AE12B4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9112d000 - 0x912d9fff  com.apple.QuartzCore (1.8 - 332.3) <DA347693-5E26-3E47-A2B3-3824C52EB08B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x912da000 - 0x91309ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <1BD6205B-7C66-3B7B-AC8C-11BE34F7CF6B> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x9130a000 - 0x9130afff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9130b000 - 0x91409fff  libJP2.dylib (1044) <E8873182-8B75-34A5-A104-BED94B0C6BF6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9140a000 - 0x9140bfff  com.apple.marco (10.0 - 1000) <F7AD1FF7-5B1E-3D3C-AF00-FA3A43118CE5> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x9140c000 - 0x9168bff7  com.apple.imageKit (2.5 - 774) <53C3FA27-3830-3A15-9707-AF7369119866> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9168c000 - 0x916bdff4  com.apple.securityinterface (9.0 - 55047) <0D5ED2B8-C973-3C91-BA45-22501A043263> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x916be000 - 0x916e9ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x916ea000 - 0x91727ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x91728000 - 0x91759ffb  com.apple.GSS (4.0 - 2.0) <145B389F-AC1E-3817-835D-8EA263E96EA5> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9175a000 - 0x9177fff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91780000 - 0x91793fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91794000 - 0x917e9ff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x917ea000 - 0x91874ff7  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <A33D0598-8699-39AC-A1DD-37079F423269> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x91875000 - 0x91876fff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x91877000 - 0x9187ffff  libsystem_dnssd.dylib (522.92.1) <7E36B79E-6BF4-3462-9A84-C0744D029636> /usr/lib/system/libsystem_dnssd.dylib
    0x91880000 - 0x9189bff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9189c000 - 0x918b4ffd  libdispatch.dylib (339.92.1) <7E7A88BF-74B3-363B-B534-6F757DF2DDE3> /usr/lib/system/libdispatch.dylib
    0x918b5000 - 0x91baaffc  com.apple.CoreImage (9.4.0) <33696A53-9E18-32D6-844F-28098DB7E426> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x91bab000 - 0x91c3cfff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91c3d000 - 0x91c75ff7  com.apple.MediaKit (15 - 709) <82E0F8C0-313C-379C-9994-4D21587D0C0C> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x91c76000 - 0x91d8dffb  com.apple.WebKit (9537 - 9537.78.2) <525C4DF6-81DE-3D49-900A-0CDA821F9B86> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91d8e000 - 0x91d90fff  com.apple.SecCodeWrapper (3.0 - 1) <066E1E30-2EEA-3166-8F86-D1054B50875B> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x91d91000 - 0x91d99fff  liblaunch.dylib (842.92.1) <C180016C-F2DB-3D8B-A72D-5185CE67DFA2> /usr/lib/system/liblaunch.dylib
    0x91d9a000 - 0x91d9dff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91d9e000 - 0x91da5ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91da6000 - 0x91da7ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <B2525E0D-2BB1-3AF6-BDCA-56DCDC1F7DBF> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
    0x91da8000 - 0x91e1eff3  com.apple.securityfoundation (6.0 - 55122.3) <DFA5E047-2B68-3CE8-B9C3-D19E6F2461CB> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91e1f000 - 0x91e55fff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x91e56000 - 0x91ef5fff  libCoreStorage.dylib (380.70.2) <AAB92110-31F1-36F0-A877-21FCE9531C4F> /usr/lib/libCoreStorage.dylib
    0x91fa2000 - 0x9221bff2  com.apple.security (7.0 - 55471.14.18) <7A58D9DE-D68B-37F7-87EF-4A3575DA09B7> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9221c000 - 0x9223bff9  com.apple.framework.Apple80211 (9.4 - 940.60) <8CCF54EE-F3CA-38B3-BD61-DDBF99E37FCB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x9223c000 - 0x9223cfff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x9223d000 - 0x92261ff3  libc++abi.dylib (49.1) <43A04ACF-97A5-35ED-B454-6B5C0CF0F99D> /usr/lib/libc++abi.dylib
    0x92262000 - 0x923efffb  com.apple.CFNetwork (673.3 - 673.3) <2C900A5F-9E29-3636-846D-68B24774E82A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x923f0000 - 0x92420ff7  com.apple.CoreServicesInternal (184.9 - 184.9) <999FEDEC-7657-3F32-A9AE-F29E0BE0AAF5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x924210

    I suggest you start by writing a script that contains local variables.  These variables correspond to your intended procedure arguments.  Once you have that working, you should be able to convert the script into a stored procedure.  Since
    I don't have Northwind I'll use AdventureWorks as a reference.  The script below will not actually run successfully since I did not include all the required information to insert a row into the detail table - but it should give you a rough idea of what
    a basic script would look like. 
    set nocount on;
    use AdventureWorks2012;
    go
    begin tran;
    declare @orderid int;
    declare @productid int;
    declare @qty int;
    set @orderid = 10;
    set @productid = 1;
    set @qty = 4;
    insert Sales.SalesOrderDetail (SalesOrderID, ProductID, UnitPrice, OrderQty)
    select @orderid, prod.ProductID, prod.ListPrice, @qty
    from Production.Product as prod where prod.ProductID = @productid;
    rollback tran;
    go

  • Mysql-workbench: symbol lookup error

    Hey all,
    after the last MySQL upgrade, I get following error when starting mysql-workbench:
    /usr/bin/mysql-workbench-bin: symbol lookup error: /usr/lib/mysql-workbench/libmforms.so.0: undefined symbol: _ZN3Gtk14TreeViewColumn14get_first_cellEv
    I'm using
    Mysql  Ver 14.14 Distrib 5.5.12, for Linux (i686) using readline 5.1
    MySQL Workbench CE 5.2.34 7780
    Yes, Arch is mostly up-to-date
    Does anyone have any clue how to fix this?
    wkr,
    fem

    I managed to get it running by updating the python package and all mysql-workbench dependencies (pacman -S python gtkmm libgl libsigc++ lua python-paramiko python-pexpect) .

  • MySql Workbench - Invalid Options

    I've followed the arch wiki and installed maria db. I've then installed mysql-workbench from that aur, but I cannot connect to a local db. I get this error:
    Your connection attempt failed for user 'root' from your host to server at 127.0.0.1:3306:
      Unsupported option provided to mysql_options()
    Please:
    1 Check that mysql is running on server 127.0.0.1
    2 Check that mysql is running on port 3306 (note: 3306 is the default, but this can be changed)
    3 Check the root has rights to connect to 127.0.0.1 from your address (mysql rights define what clients can connect to the server and from which machines)
    4 Make sure you are both providing a password if needed and using the correct password for 127.0.0.1 connecting from the host address you're connecting from
    When I click on the connection, and hit "Test Connection" I get this error:
    Unsupported option provided to mysql_options()
    I know mysql is running because I can connect via the CLI:
    ➜ Downloads mysql -u root -p
    Enter password:
    Welcome to the MariaDB monitor. Commands end with ; or \g.
    Your MariaDB connection id is 10
    Server version: 10.0.14-MariaDB-log MariaDB Server
    Copyright (c) 2000, 2014, Oracle, SkySQL Ab and others.
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    MariaDB [(none)]> show databases;
    +--------------------+
    | Database |
    +--------------------+
    | blah |
    | information_schema |
    | mysql |
    | performance_schema |
    | test |
    +--------------------+
    5 rows in set (0.00 sec)
    MariaDB [(none)]>
    And I know it is running on port 3306:
    ➜ Downloads sudo netstat -nap | grep 3306
    tcp6 0 0 :::3306 :::* LISTEN 16369/mysqld
    Any idea?
    Last edited by n_t (2014-11-24 17:24:30)

    Did you find out what was wrong? I started to have exactly the same problem on my home computer, although it works correctly at my work computer with very similar configuration.

  • Mysql Workbench 5.1.2 PKGBUILD. Help needed.

    Hi,
    I'm trying to install the recently released mysql-workbench for linux.
    I wrote a PKGBUILD:
    pkgname=mysql-workbench
    pkgver=5.1.2
    pkgrel=1
    pkgdesc="A cross-platform, visual database design tool developed by MySQL"
    arch=('i686' 'x86_64')
    url="http://dev.mysql.com/workbench/"
    license=('GPL')
    groups=()
    depends=(libmysqlclient lua libglade libxml2 libsigc++2.0 libzip gtkmm freeglut pcre libgnome gtk2 pango cairo e2fsprogs)
    makedepends=(autoconf automake libtool gcc ctemplate)
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=()
    install=
    source=(ftp://ftp.mysql.com/pub/mysql/download/gui-tools/$pkgname-$pkgver-alpha-linux.tar.gz)
    noextract=()
    md5sums=('c60b3d3542f7a5d113a422c062ec3050')
    build() {
    cd "$srcdir/$pkgname-$pkgver-alpha-linux"
    ./autogen.sh --prefix=/usr
    make || return 1
    make DESTDIR="$pkgdir/" install
    Build instructions are located here: http://dev.mysql.com/workbench/?page_id=152
    I think all the dependencies are listed, and it compiles fine, but when I launch the app it segfaults:
    $> mysql-workbench
    ** Message: MWB_PLUGIN_DIR is unset! Setting MWB_PLUGIN_DIR to predifined value '../lib/mysql-workbench'
    (mysql-workbench-bin:18056): Gtk-CRITICAL **: gtk_notebook_set_tab_label: assertion `GTK_IS_WIDGET (child)' failed
    (mysql-workbench-bin:18056): Gtk-CRITICAL **: gtk_notebook_set_tab_label: assertion `GTK_IS_WIDGET (child)' failed
    (mysql-workbench-bin:18056): Gtk-CRITICAL **: gtk_notebook_set_tab_label: assertion `GTK_IS_WIDGET (child)' failed
    MGGladeXML: _xml -> 0x8a38b90
    ** Message: Trying to load module '/usr/lib/mysql-workbench/modules/db.mysql.editors.wbp.so' (cpp)
    ** Message: Trying to load module '/usr/lib/mysql-workbench/modules/db.mysql.grt.so' (cpp)
    ** Message: Trying to load module '/usr/lib/mysql-workbench/modules/dbutils.grt.so' (cpp)
    ** Message: Trying to load module '/usr/lib/mysql-workbench/modules/forms.grt.so' (cpp)
    ** Message: Trying to load module '/usr/lib/mysql-workbench/modules/wb.model.editors.wbp.so' (cpp)
    ** Message: Trying to load module '/usr/lib/mysql-workbench/modules/wb.model.grt.so' (cpp)
    /usr/bin/mysql-workbench: line 13: 18056 Segmentation fault $bindirname/mysql-workbench-bin $*
    I also tried updating the ctemplate PKGBUILD to version 0.91 (since the one in community is an old 0.4 version)
    pkgname=ctemplate
    pkgver=0.91
    pkgrel=1
    pkgdesc="A library implementing a simple but powerful template language for C++."
    arch=(i686 x86_64)
    url="http://code.google.com/p/google-ctemplate/"
    license="BSD"
    depends=('gcc')
    options=()
    source=(http://google-ctemplate.googlecode.com/files/$pkgname-$pkgver.tar.gz)
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=$startdir/pkg install
    md5sums=()
    Recompiled mysql-workbench, but still segfaults as before.
    Any guess?
    Thanks.

    Never used namcap, interesting tool...
    I get some warnings but I'm not really sure how to interpret them
    $> namcap mysql-workbench-5.1.2-1-i686.pkg.tar.gz
    mysql-workbench E: Dependency detected and not included (mesa) from files ['usr/lib/mysql-workbench/libguiutil.so', 'usr/lib/mysql-workbench/libsqlparser.so.0', 'usr/lib/mysql-workbench/modules/wb.model.grt.so.0.0.0', 'usr/lib/mysql-workbench/db.wbp.so', 'usr/lib/mysql-workbench/db.mysql.wbp.so.0', 'usr/lib/mysql-workbench/libgrtui.so.0.0.0', 'usr/lib/mysql-workbench/modules/dbutils.grt.so.0.0.0', 'usr/lib/mysql-workbench/modules/wb.model.grt.so', 'usr/lib/mysql-workbench/libmforms.so.0', 'usr/bin/mysql-workbench-bin', 'usr/lib/mysql-workbench/libmdcanvasgtk.so.0.0.0', 'usr/lib/mysql-workbench/modules/db.mysql.grt.so.0.0.0', 'usr/lib/mysql-workbench/libgrt.so', 'usr/lib/mysql-workbench/libcdbc.mysql.so.0.0.0', 'usr/lib/mysql-workbench/modules/wb.model.grt.so.0', 'usr/lib/mysql-workbench/libgrtdbbe.so', 'usr/lib/mysql-workbench/libcdbc.so.0.0.0', 'usr/lib/mysql-workbench/libgrtbe.so.0.0.0', 'usr/lib/mysql-workbench/libcdbc.mysql.so', 'usr/lib/mysql-workbench/modules/forms.grt.so.0', 'usr/lib/mysql-workbench/libcdbc.so', 'usr/lib/mysql-workbench/db.wbp.so.0', 'usr/lib/mysql-workbench/libgrtsqlparser_mysql.so', 'usr/lib/mysql-workbench/libmforms.so', 'usr/lib/mysql-workbench/modules/db.mysql.editors.wbp.so', 'usr/lib/mysql-workbench/libgrtdbbe.so.0', 'usr/lib/mysql-workbench/libmforms.so.0.0.0', 'usr/lib/mysql-workbench/modules/db.mysql.editors.wbp.so.0.0.0', 'usr/lib/mysql-workbench/libgrtsqlparser_mysql.so.0.0.0', 'usr/lib/mysql-workbench/modules/dbutils.grt.so.0', 'usr/lib/mysql-workbench/modules/wb.model.editors.wbp.so', 'usr/lib/mysql-workbench/modules/forms.grt.so', 'usr/lib/mysql-workbench/libcanvasbe.so', 'usr/lib/mysql-workbench/libcanvasbe.so.0', 'usr/lib/mysql-workbench/db.wbp.so.0.0.0', 'usr/lib/mysql-workbench/libcdbc.so.0', 'usr/lib/mysql-workbench/modules/wb.model.editors.wbp.so.0.0.0', 'usr/lib/mysql-workbench/libmdcanvas.so', 'usr/lib/mysql-workbench/modules/db.mysql.grt.so', 'usr/lib/mysql-workbench/libgrt.so.0.0.0', 'usr/lib/mysql-workbench/libgrtsqlparser_mysql.so.0', 'usr/lib/mysql-workbench/libmdcanvas.so.0.0.0', 'usr/lib/mysql-workbench/libguiutil.so.0', 'usr/lib/mysql-workbench/libgrtbe.so','usr/lib/mysql-workbench/libcdbc.mysql.so.0', 'usr/lib/mysql-workbench/libsqlparser.so.0.0.0', 'usr/lib/mysql-workbench/libmdcanvasgtk.so', 'usr/lib/mysql-workbench/libcanvasbe.so.0.0.0', 'usr/lib/mysql-workbench/libgrtui.so.0', 'usr/lib/mysql-workbench/modules/db.mysql.editors.wbp.so.0', 'usr/lib/mysql-workbench/libgrt.so.0', 'usr/lib/mysql-workbench/libguiutil.so.0.0.0', 'usr/lib/mysql-workbench/libgrtdbbe.so.0.0.0', 'usr/bin/grtshell', 'usr/lib/mysql-workbench/libsqlparser.so', 'usr/lib/mysql-workbench/modules/db.mysql.grt.so.0', 'usr/lib/mysql-workbench/db.mysql.wbp.so', 'usr/lib/mysql-workbench/libgrtui.so', 'usr/lib/mysql-workbench/modules/wb.model.editors.wbp.so.0', 'usr/lib/mysql-workbench/modules/forms.grt.so.0.0.0', 'usr/lib/mysql-workbench/db.mysql.wbp.so.0.0.0', 'usr/lib/mysql-workbench/libmdcanvas.so.0', 'usr/lib/mysql-workbench/modules/dbutils.grt.so', 'usr/lib/mysql-workbench/libgrtbe.so.0', 'usr/lib/mysql-workbench/libmdcanvasgtk.so.0']
    mysql-workbench E: Dependency detected and not included (ctemplate) from files ['usr/lib/mysql-workbench/modules/db.mysql.grt.so', 'usr/lib/mysql-workbench/modules/db.mysql.grt.so.0', 'usr/lib/mysql-workbench/modules/db.mysql.grt.so.0.0.0', 'usr/lib/mysql-workbench/modules/wb.model.grt.so', 'usr/lib/mysql-workbench/modules/wb.model.grt.so.0.0.0', 'usr/lib/mysql-workbench/modules/wb.model.grt.so.0']
    mysql-workbench W: Dependency included but already satisfied (libxml2)
    mysql-workbench W: Dependency included but already satisfied (libsigc++2.0)
    mysql-workbench W: Dependency included and not needed (freeglut)
    mysql-workbench W: Dependency included but already satisfied (pcre)
    mysql-workbench W: Dependency included but already satisfied (gtk2)
    mysql-workbench W: Dependency included but already satisfied (pango)
    mysql-workbench W: Dependency included but already satisfied (cairo)
    mysql-workbench W: File (usr/lib/mysql-workbench/db.mysql.wbp.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/db.wbp.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libcanvasbe.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libcdbc.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libcdbc.mysql.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libgrt.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libgrtbe.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libgrtdbbe.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libgrtsqlparser_mysql.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libgrtui.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libguiutil.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libmdcanvas.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libmdcanvasgtk.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libmforms.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/libsqlparser.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/modules/db.mysql.editors.wbp.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/modules/db.mysql.grt.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/modules/dbutils.grt.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/modules/forms.grt.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/modules/wb.model.editors.wbp.la) is a libtool file.
    mysql-workbench W: File (usr/lib/mysql-workbench/modules/wb.model.grt.la) is a libtool file.
    It seems I missed the mesa dependency (but is a dependency of freeglut I think, which is listed)
    I also guessed wrong inserting ctemplate as a makedepends. Moved to depends now, but I had it installed anyway.
    I'm not sure about the "Dependency included but already satisfied" and "is a libtool file" warnings though...

  • Mysql-workbench

    mysql-workbench is a visual database design system that integrates database design, modeling, creation and maintenance into a single, seamless environment. Replacement for DBDesigner4 (Windows-only, but works with Wine).
    It doesn't exactly have a webpage, but most information, including download links are available here:
    http://forums.mysql.com/list.php?113
    It comes with mysql-gui-common when you download the source code, but you can also get the mysql-gui-common from the AUR:
    http://aur.archlinux.org/packages.php?d … =1&ID=2554
    But note that mysql-gui-common needs to be built with special configure flags which are specified in the README.linux file for mysql-workbench.
    I've had compile problems when trying to compile both of these programs. There doesn't seem to be any definitive fixes out there, but perhaps someone with a little more knowledge would know what to do.
    There is also a linux binary, which would be acceptable to use, but it doesn't appear to work either. There are also public SVN repos for both mysql-gui-common and mysql-workbench, but the same problems appear to persist.
    Although you can use mysql-workbench as simply a design tool, you need mysql installed in order for mysql-gui-common to compile.
    (old) screenshot:
    http://www.openwin.org/mike/wordpress/w … kbench.png

    If this is Adobe Workbench as I might suspect, that's probably the wrong tool to use for troubleshooting connections and related.
    Try [Sequel Pro|http://www.sequelpro.com> or another similar tool.
    If you're running remotely via VPN, that adds additional complexity to the configuration. As part of both local and particularly remote testing, using light-weight diagnostics (such as ping) would be warranted. This before running any juggernaut-class packages over the link.
    (Put bluntly, very few juggernaut-class software packages from most any vendor will generate decent diagnostics for network errors.)

  • New install of mariadb and mysql-workbench - some questions

    So I've installed mariadb along with mysql-workbench.  These were fresh installs on a system which has never had mariadb/mysql installed previously.  Per the Wiki, I installed mariadb and mysql-workbench, started and enabled the service, and ran the mysql_secure_installation script.  I then added a non-root user and even imported a database into it.  Everything seems fine, though I have never used either MySQL, mariadb, or mysql-workbench before.
    I have a  couple of questions:
    Question 1:
    When I run mysql-workbench, I have to run it with the command “gksudo mysql-workbench” or it comes up in a locked form that doesn't give me (user) access.  I am presuming that this is simply because my user account is not a member of the mysql group and that if I changed that, I'd be able to run it with a simple “mysql-workbench” command.
    The question is: Should I do that, or is there a good security reason to not have the user be a member of the mysql group?  (Would the current setup (having to run “gksudo” be a problem if I installed the mariadb on my server (rather than locally) and mysql-workbench locally?)
    The Wiki doesn't say anything about adding the user to the mysql group, so I don't know if that's just an implied standard practice, or if there is good reason not to do so.
    Question 2:
    When I try to connect to the database with mysql-workbench, it presents me with a password prompt, as expected, then I get a message box that says:
    Incompatible/nonstandard server version or connection protocol detected (10.0.17).
    A connection to this database can be established but some MySQL Workbench
    features may not work properly since the database is not fully compatible
    with the supported versions of MySQL.
    MySQL Workbench is developed and tested for MySQL Server versions 5.1, 5.5, 5.6 and 5.7
    Clicking “Continue Anyway” lets me in and connects everything up and seems to work fine.  However, the tab at the top says “Local Instance 33061 - Warning - not supported”.
    I presume this has something to do with the fact that I am running mysql-workbench as the front end not to MySQL, but mariadb - and functionality that I've tried seems to work fine. 
    So my question is: Is there more to this warning (should I be changing some default setting to make everything play nice), or is this just one of those warnings that mean nothing really, and everything IS playing nice already?
    Thanks,
    Andre

    presume this has something to do with the fact that I am running mysql-workbench as the front end not to MySQL, but mariadb - and functionality that I've tried seems to work fine. 
    I think its probably as you say.
    If everything is working fine don't worry.
    I'm using php admin to control mariadb but i think there is not much difference between maradb and MySQL.
    If problems appear you can always change to MySQL.

  • MySQL Workbench on Snow Leopard

    I'm having trouble with MySQL workbench on Snow Leopard. I use XAMPP to connect to MySQL, and it works perfectly, and connecting from the terminal command prompt works perfectly as well. When I attempt to connect using MySQL workbench, however, I get the following error:
    "Failed to Connect to MySQL at localhost:3306 with user peterv
    Lost connection to MySQL server at 'reading initial communication packet', system error: 61"
    Can anyone give me a hand with this? I've searched the net, and found nothing relevant. Also, can someone tell me how I can check which port that MySQL is using?
    Thanks,
    Peter V.

    I had to find & specify the path for the mysql.sock file.

  • [SOLVED] MySQL woes...

    If i get this right, I need to run mysqld and then configure mysql with mysqladmin then it will work properly.  However, when I try to run mysqld, i get the following error message:
    050617 6:59:32 [Warning] Can't create test file /var/lib/mysql/localhost.lower-test
    050617 6:59:32 InnoDB: Operating system error number 13 in a file operation.
    InnoDB: The error means mysqld does not have the access rights to
    InnoDB: the directory.
    InnoDB: File name ./ibdata1
    InnoDB: File operation call: 'open'.
    InnoDB: Cannot continue operation.
    Being the n00b that i am, I have no idea what this means, and upon searching for the answer, i find myself further and further into linux confusion.  Thanks in advance
    *EDIT*  Sorry folks, solved the issue - for people with similiar problems, this is how i solved it:
    as root, i set chmod -R 777 /var/lib/mysql, from there the user account that i am running on has access to the files that i need to run mysql.

    Well thanks so much for the tip. /dev/disk/by-label works beautifully in grub and fstab.
    I suppose since I have 2 SATA controllers, they were fighting it out for supremacy or something, because during the installation the drive I installed Arch on was recognized as sdb, but after rebooting, it changes.....weird....

  • MySQL Workbench on Remote Snow Leopard Server

    How do I connect to MySQL on Snow Leopard Server using Workbench ???
    I have freed up some of the permissions, such as port 3306, in the firewall section of Admin. However,
    this has not done the job and need to keep a firewall on a server running remotely. It is necessary to connect to MySQL before you install the database. It is needed because you must connect to the server in order to install the database enabling the script of the SQL file. I get an error that says: "Lost connection to MySQL server at 'reading initial communication packet,' error 61." This happens when I press the button in Workbench that says: "Test Connection." I can go into MySQL and enter a password and create a database. This is necessary to load the actual data at a later time. I am also using Cold Fusion. This, too, is waiting for a connection to the MySQL server from Workbench.
    Any ideas ???? Thx, Ted

    If this is Adobe Workbench as I might suspect, that's probably the wrong tool to use for troubleshooting connections and related.
    Try [Sequel Pro|http://www.sequelpro.com> or another similar tool.
    If you're running remotely via VPN, that adds additional complexity to the configuration. As part of both local and particularly remote testing, using light-weight diagnostics (such as ping) would be warranted. This before running any juggernaut-class packages over the link.
    (Put bluntly, very few juggernaut-class software packages from most any vendor will generate decent diagnostics for network errors.)

  • [SOLVED] mysql-5.0.24-2 broken?

    After upgrading to mysql-5.0.24-2 i've noticed that my site can't connect to mysql db and phpmyadmin says that php mysql.so module isn't loaded. I've checked configs and everything were ok, then i tried to "downgrade" mysql to mysql-5.0.24-1 and problem solved, just to be sure i upgraded mysql again and encountered same problem, so i'm running mysql-5.0.24-1 now. I think mysql-5.0.24-2 package is broken, anybody can confirm this?
    EDIT: Seems mysql-5.0.24-2 doesn't have mysql executable
    [root@host pkg]# mysql
    -bash: /usr/bin/mysql: No such file or directory

    Install mysql-clients and libmysqlclient. My guess is that you either didn't install it with a forced upgrade (-d option), or that pacman didn't like the files being on your system and decided to eat it for breakfast.

Maybe you are looking for

  • Bridge CS4 and Multicore usage?

    Hi everyone- I build a new machine a few months ago and am now in the process of reshuffling the hard drives as I underestimated the size of the archive. The current specs of the machine are: Core i7 920 (stock) 12 GB RAM Main drive: Seagate 1.5TB 72

  • Delivery Split during creation of delivery for STO

    While creating a delivery for STO, delivery is being created for individual line items. On analysis of VL 033 message, I found that the delivery split is happening because of Function SH: Unloading Point. The message is <i>"delivery split due to conf

  • Business Area not populated for F110 but it works for FBZ2

    Hi all Gurus, I have marked my co code in OBY6 for Business Area Financial Statement.  In GL a/c, I also marked the FSG to be "Required" field.  For posting key field status, it set to "Optional" During F110 auto payment run, the Business Area field

  • F8Pro - local variables not displayed in debugger - flashlocalvars.zip (1/1)

    begin 644 flashlocalvars.zip M4$L#!!0``@`(`)%XRS1!72.[@0```,<````)````37EN86UE+F%S>[][?W). M8G&Q@F]E7F)N*E<U%V=!46998DFJ0EEBD4)\/$A4P4HAN*0H,R_=&BA;FI23 MF:R05IJ77)*9GZ>0GEJBD`O6JZ"A"5?(Q0DTB+,HM:2T*$^A)".S6`]B$M"` M6DPSBI',*$O,*458"#(Q+#\S!6(>DD$*M@

  • Question in Calclating Level based measure

    Hi all: I have a requirement, where I need to calculate a level based measure. Here is a thing though. Let me give you sample data.This is what the data in the table in database looks like company ||||account||||| product|||||subproduct||||||quantity