From: Date: September 12 2005 12:10am Subject: Re: Unable to Edit Table Data List-Archive: http://lists.mysql.com/mysql/188974 Message-Id: <4324AB6A.7080508@charlott.no> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7BIT Chris Spencer wrote: > I'm on Fedora Core 4. When I right-click on a table in > Mysql-administrator and choose "Edit table data" nothing happens, and I > get this in the console: > > (mysql-administrator-bin:4628): glibmm-CRITICAL **: > unhandled exception (type Glib::Error) in signal handler: > domain: g-exec-error-quark > code : 8 > what : Failed to execute child process "mysql-query-browser-bin" (No > such file or directory) > > Is this a bug? I don't know. It's definitely an error. > Is there any other way to edit table data? One way is to use the mysql client, the standard console based program following all mysql distributions. It is used to send SQL commands to the server, so you would have to use the SQL language, in this case I guess the UPDATE statement: There are many GUI alternatives, you don't have to use "MySQL Administrator". phpMyAdmin and SQLYog are two web-based alternatives. Or you could use your favourite programming language. Download an API from and write a program that edits your table data. -- Roger