Re: mysql query browser- editing resultsets
I think the most likely case is the table is read-only. How do I change this? Ross - Original Message - From: "J.R. Bullington" <[EMAIL PROTECTED]> To: Sent: Monday, April 24, 2006 4:46 PM Subject: RE: mysql query browser- editing resultsets Then, as the documentation states, you cannot edit the fields in that particular query. Either the table is read-only, you have multiple tables (like a join) in your SQL string, or you have functions (max(),min(),count()) in your string. Check out those items again, and if you still can't edit it, post your SQL query and your CREATE TABLE statement so that we (the list) can test this out for you. J.R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 11:42 AM To: J.R. Bullington; mysql@lists.mysql.com Subject: Re: mysql query browser- editing resultsets The edit button is 'greyed out' Ross - Original Message - From: "J.R. Bullington" <[EMAIL PROTECTED]> To: Sent: Monday, April 24, 2006 4:20 PM Subject: RE: mysql query browser- editing resultsets There is an EDIT button on the bottom of the Query Browser. You have to "activate" the edit feature by clicking on this. You will see that it remains highlighted. To edit your cells, double click on them. When finished, hit APPLY CHANGES at the bottom. If you do not apply them, they will not commit. J.R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 11:14 AM To: mysql@lists.mysql.com Subject: mysql query browser- editing resultsets Can someone explain to me how to edit this...I click on the cells and nothing From the manual If the query resultset is editable, you can click the Edit button below the resultset view. Double clicking cells in the resultset will allow you to edit their contents. Changes are commited to the database only after the Apply Changes button is pressed. For a resultset to be editable, the following conditions must be met: a.. the resultset must contain columns from no more than one single table; b.. the queried columns must be proper column names (e.g: no functions, such as in SELECT max(price) FROM products); c.. this table must contain a Primary Key column, although not necessarily in the query. If the query does not contain the primary key, it will be automatically added before the MySQL Query Browser sends the query to the MySQL server, but will display only the columns you requested; -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
RE: mysql query browser- editing resultsets
In this case, the result set is not editable. It needs to have some way to uniquely identify the row(s) under edit so it can perform an update. Tim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 11:42 AM To: J.R. Bullington; mysql@lists.mysql.com Subject: Re: mysql query browser- editing resultsets The edit button is 'greyed out' Ross - Original Message - From: "J.R. Bullington" <[EMAIL PROTECTED]> To: Sent: Monday, April 24, 2006 4:20 PM Subject: RE: mysql query browser- editing resultsets > There is an EDIT button on the bottom of the Query Browser. You have to > "activate" the edit feature by clicking on this. You will see that it > remains highlighted. > > To edit your cells, double click on them. When finished, hit APPLY CHANGES > at the bottom. If you do not apply them, they will not commit. > > J.R. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, April 24, 2006 11:14 AM > To: mysql@lists.mysql.com > Subject: mysql query browser- editing resultsets > > Can someone explain to me how to edit this...I click on the cells and > nothing > > >>From the manual > > If the query resultset is editable, you can click the Edit button below > the > resultset view. Double clicking cells in the resultset will allow you to > edit their contents. Changes are commited to the database only after the > Apply Changes button is pressed. > For a resultset to be editable, the following conditions must be met: > > a.. the resultset must contain columns from no more than one single > table; > b.. the queried columns must be proper column names (e.g: no functions, > such as in SELECT max(price) FROM products); > > c.. this table must contain a Primary Key column, although not > necessarily > in the query. If the query does not contain the primary key, it will be > automatically added before the MySQL Query Browser sends the query to the > MySQL server, but will display only the columns you requested; > > > > -- > MySQL General Mailing List > For list archives: http://lists.mysql.com/mysql > To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED] > > > -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
RE: mysql query browser- editing resultsets
Then, as the documentation states, you cannot edit the fields in that particular query. Either the table is read-only, you have multiple tables (like a join) in your SQL string, or you have functions (max(),min(),count()) in your string. Check out those items again, and if you still can't edit it, post your SQL query and your CREATE TABLE statement so that we (the list) can test this out for you. J.R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 11:42 AM To: J.R. Bullington; mysql@lists.mysql.com Subject: Re: mysql query browser- editing resultsets The edit button is 'greyed out' Ross - Original Message - From: "J.R. Bullington" <[EMAIL PROTECTED]> To: Sent: Monday, April 24, 2006 4:20 PM Subject: RE: mysql query browser- editing resultsets > There is an EDIT button on the bottom of the Query Browser. You have to > "activate" the edit feature by clicking on this. You will see that it > remains highlighted. > > To edit your cells, double click on them. When finished, hit APPLY CHANGES > at the bottom. If you do not apply them, they will not commit. > > J.R. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, April 24, 2006 11:14 AM > To: mysql@lists.mysql.com > Subject: mysql query browser- editing resultsets > > Can someone explain to me how to edit this...I click on the cells and > nothing > > >>From the manual > > If the query resultset is editable, you can click the Edit button below > the > resultset view. Double clicking cells in the resultset will allow you to > edit their contents. Changes are commited to the database only after the > Apply Changes button is pressed. > For a resultset to be editable, the following conditions must be met: > > a.. the resultset must contain columns from no more than one single > table; > b.. the queried columns must be proper column names (e.g: no functions, > such as in SELECT max(price) FROM products); > > c.. this table must contain a Primary Key column, although not > necessarily > in the query. If the query does not contain the primary key, it will be > automatically added before the MySQL Query Browser sends the query to the > MySQL server, but will display only the columns you requested; > > > > -- > MySQL General Mailing List > For list archives: http://lists.mysql.com/mysql > To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED] > > > -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: mysql query browser- editing resultsets
The edit button is 'greyed out' Ross - Original Message - From: "J.R. Bullington" <[EMAIL PROTECTED]> To: Sent: Monday, April 24, 2006 4:20 PM Subject: RE: mysql query browser- editing resultsets There is an EDIT button on the bottom of the Query Browser. You have to "activate" the edit feature by clicking on this. You will see that it remains highlighted. To edit your cells, double click on them. When finished, hit APPLY CHANGES at the bottom. If you do not apply them, they will not commit. J.R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 11:14 AM To: mysql@lists.mysql.com Subject: mysql query browser- editing resultsets Can someone explain to me how to edit this...I click on the cells and nothing From the manual If the query resultset is editable, you can click the Edit button below the resultset view. Double clicking cells in the resultset will allow you to edit their contents. Changes are commited to the database only after the Apply Changes button is pressed. For a resultset to be editable, the following conditions must be met: a.. the resultset must contain columns from no more than one single table; b.. the queried columns must be proper column names (e.g: no functions, such as in SELECT max(price) FROM products); c.. this table must contain a Primary Key column, although not necessarily in the query. If the query does not contain the primary key, it will be automatically added before the MySQL Query Browser sends the query to the MySQL server, but will display only the columns you requested; -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
RE: mysql query browser- editing resultsets
There is an EDIT button on the bottom of the Query Browser. You have to "activate" the edit feature by clicking on this. You will see that it remains highlighted. To edit your cells, double click on them. When finished, hit APPLY CHANGES at the bottom. If you do not apply them, they will not commit. J.R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 11:14 AM To: mysql@lists.mysql.com Subject: mysql query browser- editing resultsets Can someone explain to me how to edit this...I click on the cells and nothing >From the manual If the query resultset is editable, you can click the Edit button below the resultset view. Double clicking cells in the resultset will allow you to edit their contents. Changes are commited to the database only after the Apply Changes button is pressed. For a resultset to be editable, the following conditions must be met: a.. the resultset must contain columns from no more than one single table; b.. the queried columns must be proper column names (e.g: no functions, such as in SELECT max(price) FROM products); c.. this table must contain a Primary Key column, although not necessarily in the query. If the query does not contain the primary key, it will be automatically added before the MySQL Query Browser sends the query to the MySQL server, but will display only the columns you requested; -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: mysql-query-browser install RPM
[EMAIL PROTECTED] wrote: Must the RPM be manually downloaded, or can the query browser be installed from yum? I've tried "search 'mysql-query-browser'" and no result--perhaps I need to add a repository? [EMAIL PROTECTED] ~]$ mysql-query-browser bash: mysql-query-browser: command not found [EMAIL PROTECTED] ~]$ ll /opt/ total 0 [EMAIL PROTECTED] ~]$ mysql -u thufir -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 13 to server version: 4.1.16 Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> quit Bye [EMAIL PROTECTED] ~]$ date Wed Feb 1 12:58:28 EST 2006 [EMAIL PROTECTED] ~]$ and [EMAIL PROTECTED] ~]# [EMAIL PROTECTED] ~]# yum -y groupinstall 'MySQL Database' Setting up Group Process Setting up repositories Setting up repositories Reading repository metadata in from local files Passing package list to Install Process Parsing package install arguments Nothing to do [EMAIL PROTECTED] ~]# date Wed Feb 1 13:03:56 EST 2006 [EMAIL PROTECTED] ~]# So, I know that I have the entire group 'MySQL Database'. thanks, Thufir Hi - I have never seen mysql-query-browser in yum. I recently recompiled a .src.rpm against CentOS 4.2, which seems to work fine. That's the best I could do. Perhaps the MySQL team could consider posting a more recent build of it for people like yourself (I'd be happy to distribute, but I don't have enough bandwidth! ;) ) Thanks -dant -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: MySql Query Browser 1.1.15 BUG????
Hello. Thank you for your bug report. See: http://bugs.mysql.com/bug.php?id=13521 This issue has been committed to our source repository of that product and will be incorporated into the next release. If necessary, you can access the source repository and build the latest available version, including the bugfix, yourself. More information about accessing the source trees is available at http://www.mysql.com/doc/en/Installing_source_tree.html http://bugs.mysql.com/bug.php?id=13521 Angelo Luis wrote: >I download MySql Query Browser 1.1.15 and he is leaving me nervous... >This is the problem: >1. I have 2 tabsheet result set. >2. I the first i make a query , like select * from table1. >3. In the second i am in the middle of a query, like select * from >table1 >where id = (What's is the id ??? Fuck, i forgot. Let me see the first >tabsheet!!!) >4. I turn tho the first tabsheet e and i see that the id is 13, so, let >me >come back the the second tab sheet and finish the query... >5. WHAT??? where is my query??? >DO you understand the problem??? >OBS: >- Sorry for my bad english >- I deserve one IPod?? -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsored by Ensita.NET http://www.ensita.net/ __ ___ ___ __ / |/ /_ __/ __/ __ \/ /Gleb Paharenko / /|_/ / // /\ \/ /_/ / /__ [EMAIL PROTECTED] /_/ /_/\_, /___/\___\_\___/ MySQL AB / Ensita.NET <___/ www.mysql.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: MySQL Query Browser
I think Control Center is a much better tool then the combination of Query Browser and Administrator. I still use Control Center for my day to day stuff and only check out Query Browser when new versions come out to see if they've solved the major problems. I think they've gone completely in the wrong direction with these tools and I even told members of MySQL-AB at this years user conference. I gave a written list of suggestions and not a single one of them has been addressed in the program. It's definitely not an intuitive application and could be so much better if they'd just take the best ideas from all the other tools that are already out here. I don't think they've done that; it seems as if they've created this thing based on the way they _want_ to use it and not the way users _need_ to use it. >>> Pooly <[EMAIL PROTECTED]> 9/30/05 8:57:04 AM >>> 2005/9/30, Sujay Koduri < [EMAIL PROTECTED] >: > > I am not saying MysQL Query Browser is anyway bad or inferior, but as for my > experience sqlyog is very good. There is a free version which you can use > for executing SQL queries, ofcourse you will be stripped of some advanced > features. > > You can run multiple queries at once using shift+F5. I suggest you to try > this out once. > the no longer supported Mysql Control Center, can do it as well. It supports single/multiple query without tricks. You can even directly edit your dataset (and not do the annoying : "edit"+ do your stuff + "apply changes" of MysqlQuery Browser ) > sujay > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, September 30, 2005 7:14 PM > To: Rob Agar > Cc: 'Mysql ' > Subject: RE: MySQL Query Browser > > "Rob Agar" < [EMAIL PROTECTED] > wrote on 09/29/2005 08:27:37 PM: > > > hi Scott > > > > > How do I run more than 1 queries in MySQL Query Browser? > > > > The only way I've found is to put the queries in a .sql file and load > > it via File > Open Script. It doesn't accept multiple typed in > > queries, even if they are separated by semicolons. > > > > hth > > Rob > > > > > > > He can just start a new script tab, can't he? That's how I do it. I don't > know why they have two different types of tabs (one for multi-statements and > one for single statements) but they do. > > File -> New Script Tab > > > Shawn Green > Database Administrator > Unimin Corporation - Spruce Pine > > -- > MySQL General Mailing List > For list archives: http://lists.mysql.com/mysql > To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED] > > -- Pooly Webzine Rock : http://www.w-fenec.org/ -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
Re: MySQL Query Browser
2005/9/30, Sujay Koduri <[EMAIL PROTECTED]>: > > I am not saying MysQL Query Browser is anyway bad or inferior, but as for my > experience sqlyog is very good. There is a free version which you can use > for executing SQL queries, ofcourse you will be stripped of some advanced > features. > > You can run multiple queries at once using shift+F5. I suggest you to try > this out once. > the no longer supported Mysql Control Center, can do it as well. It supports single/multiple query without tricks. You can even directly edit your dataset (and not do the annoying : "edit"+ do your stuff + "apply changes" of MysqlQuery Browser ) > sujay > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, September 30, 2005 7:14 PM > To: Rob Agar > Cc: 'Mysql ' > Subject: RE: MySQL Query Browser > > "Rob Agar" <[EMAIL PROTECTED]> wrote on 09/29/2005 08:27:37 PM: > > > hi Scott > > > > > How do I run more than 1 queries in MySQL Query Browser? > > > > The only way I've found is to put the queries in a .sql file and load > > it via File > Open Script. It doesn't accept multiple typed in > > queries, even if they are separated by semicolons. > > > > hth > > Rob > > > > > > > He can just start a new script tab, can't he? That's how I do it. I don't > know why they have two different types of tabs (one for multi-statements and > one for single statements) but they do. > > File -> New Script Tab > > > Shawn Green > Database Administrator > Unimin Corporation - Spruce Pine > > -- > MySQL General Mailing List > For list archives: http://lists.mysql.com/mysql > To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED] > > -- Pooly Webzine Rock : http://www.w-fenec.org/ -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
RE: MySQL Query Browser
I am not saying MysQL Query Browser is anyway bad or inferior, but as for my experience sqlyog is very good. There is a free version which you can use for executing SQL queries, ofcourse you will be stripped of some advanced features. You can run multiple queries at once using shift+F5. I suggest you to try this out once. sujay -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 7:14 PM To: Rob Agar Cc: 'Mysql ' Subject: RE: MySQL Query Browser "Rob Agar" <[EMAIL PROTECTED]> wrote on 09/29/2005 08:27:37 PM: > hi Scott > > > How do I run more than 1 queries in MySQL Query Browser? > > The only way I've found is to put the queries in a .sql file and load > it via File > Open Script. It doesn't accept multiple typed in > queries, even if they are separated by semicolons. > > hth > Rob > > > He can just start a new script tab, can't he? That's how I do it. I don't know why they have two different types of tabs (one for multi-statements and one for single statements) but they do. File -> New Script Tab Shawn Green Database Administrator Unimin Corporation - Spruce Pine -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
RE: MySQL Query Browser
"Rob Agar" <[EMAIL PROTECTED]> wrote on 09/29/2005 08:27:37 PM: > hi Scott > > > How do I run more than 1 queries in MySQL Query Browser? > > The only way I've found is to put the queries in a .sql file and load it > via File > Open Script. It doesn't accept multiple typed in queries, > even if they are separated by semicolons. > > hth > Rob > > > He can just start a new script tab, can't he? That's how I do it. I don't know why they have two different types of tabs (one for multi-statements and one for single statements) but they do. File -> New Script Tab Shawn Green Database Administrator Unimin Corporation - Spruce Pine
RE: MySQL Query Browser
hi Scott > How do I run more than 1 queries in MySQL Query Browser? The only way I've found is to put the queries in a .sql file and load it via File > Open Script. It doesn't accept multiple typed in queries, even if they are separated by semicolons. hth Rob -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: MySQL Query Browser Inline help
Shawn, Apology accepted. :) No hard feeling. Scott On 8/8/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > Scott Hamm <[EMAIL PROTECTED]> wrote on 08/08/2005 11:24:22 AM: > > > On 8/8/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > > > Scott Hamm <[EMAIL PROTECTED]> wrote on 08/08/2005 08:11:18 AM: > > > > > Where can I put in my suggestion (I'm sure others suggested the same) > for > > > MySQL Query Browser? > > > > > > Scott > > > > > > > ROFLMAO -- you really DON'T check the website before asking the > > group do you (or read the manual, or check the archives, or )? I > > won't give you the direct link, that would be just too darn easy. > > > > http://dev.mysql.com/downloads/ > > > > Shawn Green > > Database Administrator > > Unimin Corporation - Spruce Pine > > > > Shawn, > > > > I apologize for my simple mindness, English is my second language. > > As you should already notice that my writing is not in technical > > aspect. And what's more my reading skills is much lower (yeah, call > > me "low vocab" I don't care) and often had hard time trying to > > understand the jumbo bumbo on web sites. I often thought "bugs" > > *ONLY* apply to problems in program, not a suggestion or ideas. > > That is why I skipped bugs section trying to look for something that > > I can suggest. > > > > Scott > > > > Scott, > > I owe you a BIG apology. After re-reading your first message (and paying > closer attention to your SUBJECT line) I realize you weren't asking for the > "program" MySQL Query Browser but how to suggest an improvement to the > product MySQL already has. At my first glance, I thought you were asking > MySQL to develop a Query Browser. Obviously I am way off my game today and I > was way too harsh in my response to your question. Please accept my humble > apology. I am very sorry for jumping to the wrong conclusion. > > Shawn Green > Database Administrator > Unimin Corporation - Spruce Pine > > -- Please avoid sending me Word or PowerPoint attachments. See http://www.gnu.org/philosophy/no-word-attachments.html
Re: MySQL Query Browser Inline help
Scott Hamm <[EMAIL PROTECTED]> wrote on 08/08/2005 11:24:22 AM: > On 8/8/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Scott Hamm <[EMAIL PROTECTED]> wrote on 08/08/2005 08:11:18 AM: > > > Where can I put in my suggestion (I'm sure others suggested the same) for > > MySQL Query Browser? > > > > Scott > > > > ROFLMAO -- you really DON'T check the website before asking the > group do you (or read the manual, or check the archives, or )? I > won't give you the direct link, that would be just too darn easy. > > http://dev.mysql.com/downloads/ > > Shawn Green > Database Administrator > Unimin Corporation - Spruce Pine > > Shawn, > > I apologize for my simple mindness, English is my second language. > As you should already notice that my writing is not in technical > aspect. And what's more my reading skills is much lower (yeah, call > me "low vocab" I don't care) and often had hard time trying to > understand the jumbo bumbo on web sites. I often thought "bugs" > *ONLY* apply to problems in program, not a suggestion or ideas. > That is why I skipped bugs section trying to look for something that > I can suggest. > > Scott > Scott, I owe you a BIG apology. After re-reading your first message (and paying closer attention to your SUBJECT line) I realize you weren't asking for the "program" MySQL Query Browser but how to suggest an improvement to the product MySQL already has. At my first glance, I thought you were asking MySQL to develop a Query Browser. Obviously I am way off my game today and I was way too harsh in my response to your question. Please accept my humble apology. I am very sorry for jumping to the wrong conclusion. Shawn Green Database Administrator Unimin Corporation - Spruce Pine
Re: MySQL Query Browser Inline help
On 8/8/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > Scott Hamm <[EMAIL PROTECTED]> wrote on 08/08/2005 08:11:18 AM: > > > Where can I put in my suggestion (I'm sure others suggested the same) > for > > MySQL Query Browser? > > > > Scott > > > > ROFLMAO -- you really DON'T check the website before asking the group do > you (or read the manual, or check the archives, or )? I won't give you > the direct link, that would be just too darn easy. > > http://dev.mysql.com/downloads/ > > Shawn Green > Database Administrator > Unimin Corporation - Spruce Pine Shawn, I apologize for my simple mindness, English is my second language. As you should already notice that my writing is not in technical aspect. And what's more my reading skills is much lower (yeah, call me "low vocab" I don't care) and often had hard time trying to understand the jumbo bumbo on web sites. I often thought "bugs" *ONLY* apply to problems in program, not a suggestion or ideas. That is why I skipped bugs section trying to look for something that I can suggest. Scott -- Please avoid sending me Word or PowerPoint attachments. See http://www.gnu.org/philosophy/no-word-attachments.html
Re: MySQL Query Browser Inline help
Scott Hamm <[EMAIL PROTECTED]> wrote on 08/08/2005 08:11:18 AM: > Where can I put in my suggestion (I'm sure others suggested the same) for > MySQL Query Browser? > > Scott > ROFLMAO -- you really DON'T check the website before asking the group do you (or read the manual, or check the archives, or )? I won't give you the direct link, that would be just too darn easy. http://dev.mysql.com/downloads/ Shawn Green Database Administrator Unimin Corporation - Spruce Pine
Re: MySQL Query Browser Inline help
Hello. Probably you want to make a feature request at: http://bugs.mysql.com >Where can I put in my suggestion (I'm sure others suggested the same) >for >MySQL Query Browser? Scott Hamm <[EMAIL PROTECTED]> wrote: -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsored by Ensita.NET http://www.ensita.net/ __ ___ ___ __ / |/ /_ __/ __/ __ \/ /Gleb Paharenko / /|_/ / // /\ \/ /_/ / /__ [EMAIL PROTECTED] /_/ /_/\_, /___/\___\_\___/ MySQL AB / Ensita.NET <___/ www.mysql.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: mysql-query-browser-bin: error while loading shared libraries: libtiff.so.3
Hello. >libtiff.so.3: cannot open shared object file: No such file or >directory I think, you should get the version of library which mysql-query-browser wants. Billy Pilgrim <[EMAIL PROTECTED]> wrote: > Hello, I am trying to run mysql query browser on debian, but... > > # ./mysql-query-browser > ./mysql-query-browser-bin: error while loading shared libraries: > libtiff.so.3: cannot open shared object file: No such file or > directory > > Looks like I have libtiff.so.4. > > # ls libtiff* > libtiff.so.4 libtiff.so.4.0.0 > > What should I do? Mysql administrator works. > -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsored by Ensita.NET http://www.ensita.net/ __ ___ ___ __ / |/ /_ __/ __/ __ \/ /Gleb Paharenko / /|_/ / // /\ \/ /_/ / /__ [EMAIL PROTECTED] /_/ /_/\_, /___/\___\_\___/ MySQL AB / Ensita.NET <___/ www.mysql.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: MySQL Query Browser
YOu could try the free version of SQLyog. It works on my Win98. www.webyog.com Karam --- Chris <[EMAIL PROTECTED]> wrote: > Hassan Shaikh wrote: > > > The MySQL Query Browser online documentation > clearly mentions that it > > runs on 32-bit Windows operating systems, > including Windows 95, 98 and > > Me. However, while installing it on WinME, I get > the following error: > > > > "The Operating System is not adequate for running > MySQL Query Browser > > 1.1" > > > > Can anyone please explain? > > > > Thanks. > > > > > > Hassan > > > This was mentioned, briefly, on the MySQL GUI list: > > http://lists.mysql.com/gui-tools/1563 > > I don't know any more than that. > > Chris > > -- > MySQL General Mailing List > For list archives: http://lists.mysql.com/mysql > To unsubscribe: > http://lists.mysql.com/[EMAIL PROTECTED] > > __ Do you Yahoo!? Meet the all-new My Yahoo! - Try it today! http://my.yahoo.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: MySQL Query Browser
Hassan Shaikh wrote: The MySQL Query Browser online documentation clearly mentions that it runs on 32-bit Windows operating systems, including Windows 95, 98 and Me. However, while installing it on WinME, I get the following error: "The Operating System is not adequate for running MySQL Query Browser 1.1" Can anyone please explain? Thanks. Hassan This was mentioned, briefly, on the MySQL GUI list: http://lists.mysql.com/gui-tools/1563 I don't know any more than that. Chris -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: MySQL Query Browser
Hello. I don't think that a lot of people can answer on your question. Windows ME is rarely found to be an OS for MySQL users. You may report a bug at bugs.mysql.com. Hassan Shaikh <[EMAIL PROTECTED]> wrote: > The MySQL Query Browser online documentation clearly mentions that it > runs on 32-bit Windows operating systems, including Windows 95, 98 and > Me. However, while installing it on WinME, I get the following error: > > "The Operating System is not adequate for running MySQL Query Browser 1.1" > > Can anyone please explain? > > Thanks. > > > Hassan > -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsored by Ensita.NET http://www.ensita.net/ __ ___ ___ __ / |/ /_ __/ __/ __ \/ /Gleb Paharenko / /|_/ / // /\ \/ /_/ / /__ [EMAIL PROTECTED] /_/ /_/\_, /___/\___\_\___/ MySQL AB / Ensita.NET <___/ www.mysql.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: Mysql Query Browser is not launch
Spenser wrote: I just tried installing it on my RedHat Linux 8 laptop and it complained about libXcursor.so. This is the message: error while loading shared libraries: libXcursor.so.1: cannot open shared object file: No such file or directory I downloaded the full tar ball version. I'm using the Gnome 2 desktop. Do I need to download libXcursor.so from some where and install it? libXcursor is a part of my xorg-x11 installation: dkasak ~ # locate libXcursor.so /usr/X11R6/lib/libXcursor.so /usr/X11R6/lib/libXcursor.so.1.0.2 /usr/X11R6/lib/libXcursor.so.1 dkasak ~ # qpkg -f /usr/X11R6/lib/libXcursor.so x11-base/xorg-x11 * dkasak ~ # I assume it also comes with XFree86. Try the above 'locate' command ( locate libXcursor.so ) and see if it's on your system or not. You may have to upgrade to a later version of XFree86 ( or jump ship to xorg-x11 like most ). That's well outside the scope of the mailing list, and I've never really used RedHat apart from my first 3 months of Linux, so I don't want to give you advice that will mess up your system, but it looks like either your X installation is broken, or too old. -- Daniel Kasak IT Developer NUS Consulting Group Level 5, 77 Pacific Highway North Sydney, NSW, Australia 2060 T: (+61) 2 9922-7676 / F: (+61) 2 9922 7989 email: [EMAIL PROTECTED] website: http://www.nusconsulting.com.au -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
Re: Mysql Query Browser is not launch
I just tried installing it on my RedHat Linux 8 laptop and it complained about libXcursor.so. This is the message: error while loading shared libraries: libXcursor.so.1: cannot open shared object file: No such file or directory I downloaded the full tar ball version. I'm using the Gnome 2 desktop. Do I need to download libXcursor.so from some where and install it?
Re: Mysql Query Browser is not launch
[EMAIL PROTECTED] wrote: Dear list. I´m trying to work with Mysql-Query Browser Application. So, I installed it following the manual instructions but when I try to run it cannot be launched. Into the ./mysql-query-browser/bin directory I type mysql-query-browser and I receive this error message: bash:mysql-query-browser: command not found I tried too from RUN tab from GNOME task bar and the problem is the same. Excuse me if this ask is stupid. The current directory is not in your path. Either type the *whole* path to the binary, or cd into the directory with the binary, and *preceed* the name of it with ./ eg: cd /path/to/binary ./mysql-query-browser -- Daniel Kasak IT Developer NUS Consulting Group Level 5, 77 Pacific Highway North Sydney, NSW, Australia 2060 T: (+61) 2 9922-7676 / F: (+61) 2 9922 7989 email: [EMAIL PROTECTED] website: http://www.nusconsulting.com.au -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]