Re: Error message I am getting today. All help appreciated.

2012-10-19 Thread Andrés Tello
. If you got the error code , you can check it by perror X Anymore detail information would be appreciate ! On Wed, Oct 17, 2012 at 10:32 AM, ad...@canadianinvestors.com ad...@canadianinvestors.com wrote: Hi, I run www.canadianinvestors.com and am getting this error message. Warning

Error message I am getting today. All help appreciated.

2012-10-16 Thread ad...@canadianinvestors.com
Hi, I run www.canadianinvestors.com and am getting this error message. Warning: mysql_connect() [function.mysql-connect]: Lost connection to MySQL server during query in /var/www/domains/x.canadianinvestors.com/docs/common/library/db_connect.inc on line 15 Lost connection to MySQL server

Re: Error message I am getting today. All help appreciated.

2012-10-16 Thread Lixun Peng
Hi, What query is running? Is web server and DB server in the same server? Have something in error.log of MySQL? On Wed, Oct 17, 2012 at 10:32 AM, ad...@canadianinvestors.com ad...@canadianinvestors.com wrote: Hi, I run www.canadianinvestors.com and am getting this error message. Warning

Re: Error message I am getting today. All help appreciated.

2012-10-16 Thread Dehua Yang
...@canadianinvestors.com ad...@canadianinvestors.com wrote: Hi, I run www.canadianinvestors.com and am getting this error message. Warning: mysql_connect() [function.mysql-connect]: Lost connection to MySQL server during query in /var/www/domains/ x.canadianinvestors.com/docs/common/library

Re: Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-18 Thread Johan De Meersman
- Original Message - From: David Lerer dle...@us.univision.com Correct me if I am wrong, but my impression is that usage of DEFINER=user in stored procedures has no impact on runtime and is actually optional. (not to be confused with the clause SQL SECURITY INVOKER which is

RE: Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-18 Thread David Lerer
There is no 'root'@'%' registered error message - Original Message - From: David Lerer dle...@us.univision.com Correct me if I am wrong, but my impression is that usage of DEFINER=user in stored procedures has no impact on runtime and is actually optional. (not to be confused

Re: Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-18 Thread Johan De Meersman
- Original Message - From: David Lerer dle...@us.univision.com Thanks Bier. I see what you mean. (As a rule we always use SQL SECURITY INVOKER) Both have their use, although I would very much prefer MySQL to default to INVOKER if not specified, instead of the extremely

Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-17 Thread Brent Clark
Hiya Ill be up front my saying my knowledge of store procedures is limited. A Developer gave me a procedure to load. It starts off with: CREATE DEFINER=`root`@`%` PROCEDURE But now, the developer informs me that he gets the following message. There is no 'root'@'%' registered

Re: Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-17 Thread Johnny Withers
Change the definer to one of your registered root accounts. Root@127 or root@localhost. On Aug 17, 2011 8:39 AM, Brent Clark brentgclarkl...@gmail.com wrote: Hiya Ill be up front my saying my knowledge of store procedures is limited. A Developer gave me a procedure to load. It starts off

Re: Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-17 Thread Brent Clark
Hiya Thank you so much for replying. I really appreciate it. I know the answer (well I think I do :) ), but im still going to ask. What is the risk if do the GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mysql' WITH GRANT OPTION; To satisfy the developer. Thank you again. Brent

Re: Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-17 Thread Johnny Withers
It would allow anyone from anywhere to access your server as root with full access to all databases using the password 'mysql'. Not very secure. I don't recommend having a root@% defined. On Aug 17, 2011 8:50 AM, Brent Clark brentgclarkl...@gmail.com wrote: Hiya Thank you so much for replying.

Re: Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-17 Thread Jon Siebert
Perhaps he could make the stored procedure functional by creating a user with the EXECUTE permission (somebody please fell free to correct me if I am mistaken) if it is to be used to execute a stored procedure. You don't want someone to attempt using the 'root' username with a typical 'mysql'

Re: Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-17 Thread Johan De Meersman
- Original Message - From: Brent Clark brentgclarkl...@gmail.com I know the answer (well I think I do :) ), but im still going to ask. What is the risk if do the GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mysql' WITH GRANT OPTION; To satisfy the developer. That said

RE: Concerned : Developer getting There is no 'root'@'%' registered error message

2011-08-17 Thread David Lerer
Correct me if I am wrong, but my impression is that usage of DEFINER=user in stored procedures has no impact on runtime and is actually optional. (not to be confused with the clause SQL SECURITY INVOKER which is crucial.) Note: I use 5.1.32-enterprise-gpl-advanced-log. David. -- MySQL General

Suggestion : Better error message for hostname resolution error during MySQL installation

2010-08-22 Thread Jaikiran Pai
path). So, in such cases, would it be possible to print out a better error message which would tell the users what the real problem is? Something like: /usr/bin/resolveip command not found. Make sure basedir (and other variables) point to the right location. Tip: resolveip can be located

Re: How to get Error Number and Error Message 2nd Try

2009-02-16 Thread Al
Paul DuBois wrote: On Feb 10, 2009, at 11:26 PM, Al wrote: I know that all of the prgramming interfaces have the ability to issue a Function Call to get error number for the most recently invoked MySQL function and the error message for the most recently invoked MySQL function

Re: How to get Error Number and Error Message 2nd Try

2009-02-13 Thread Paul DuBois
On Feb 10, 2009, at 11:26 PM, Al wrote: I know that all of the prgramming interfaces have the ability to issue a Function Call to get error number for the most recently invoked MySQL function and the error message for the most recently invoked MySQL function such as in C using

How to get Error Number and Error Message

2009-02-10 Thread Al
I know that all of the prgramming interfaces have the ability to issue a Function Call to get error number for the most recently invoked MySQL function and the error message for the most recently invoked MySQL function such as in C using *mysql_errno() etc. BUT * Surely

How to get Error Number and Error Message 2nd Try

2009-02-10 Thread Al
I know that all of the prgramming interfaces have the ability to issue a Function Call to get error number for the most recently invoked MySQL function and the error message for the most recently invoked MySQL function such as in C using *mysql_errno() etc. BUT * Surely

trapping error code and error message.

2008-08-26 Thread Ananda Kumar
Hi All, In oracle we have these two bulit in's SQLCODE and SQLERRM, which helps use to find the error code and error message. Does mysql also provide any thing like this. I want to use this in my stored proc to find out if stored proc throws any exception apart from NO_DATA_FOUND regards anandkl

RE: error message

2007-05-27 Thread Geoffroy Cogniaux
Hi, Could we show your procedure to try to help you ? Geoffroy. -Message d'origine- De : Ananda Kumar [mailto:[EMAIL PROTECTED] Envoyé : vendredi 25 mai 2007 17:35 À : MySQL General Objet : error message Hi All, We are using 5.0.40-enterprise-gpl-log version on our production db

error message

2007-05-25 Thread Ananda Kumar
Hi All, We are using 5.0.40-enterprise-gpl-log version on our production db. If we run a stored proc, we are getting the below error Query OK, 0 rows affected, 1 warning (0.01 sec) ERROR 1308 (42000): LEAVE with no matching label: SWL_return mysql show warnings; - //

Error message on trying to start service

2007-05-05 Thread J Trahair
Hi Everyone I had to re-install everything after Norton crashed my hard disk. I re-formatted. I am trying to install MySQL using the same installation files and method as before. MySQL installed OK (mysql-5.0.27-win32.zip). The mysql connector ODBC installed OK. However, I cannot complete

Re: Error message on trying to start service

2007-05-05 Thread Baron Schwartz
says: InnoDB: Error: log file .\ib_logfile0 is of different size 0 10485760 bytes InnoDB: than specified in the .cnf file 0 18874368 bytes! 070505 15:28:54 [ERROR] Default storage engine (InnoDB) is not available 070505 15:28:54 [ERROR] Aborting The error message about the size is the place

Fw: Error message on trying to start service

2007-05-05 Thread J Trahair
Thanks Baron, that hit the spot. Thanks again. Jonathan - Original Message - From: J Trahair To: MySQL General Sent: Saturday, May 05, 2007 9:00 PM Subject: Error message on trying to start service Hi Everyone I had to re-install everything after Norton crashed my hard disk. I re

Error message Row cannot be located for updating

2007-03-20 Thread Jonathan Trahair
- Original Message - From: Jonathan Trahair To: MySQL General Sent: Monday, March 19, 2007 11:10 AM Subject: Error message Row cannot be located for updating Hi Everyone I am using VB6 and MySQL, recently installed. I have a FlexGrid of items. I save them, and in a large order (25

Error message Row cannot be located for updating

2007-03-19 Thread Jonathan Trahair
Hi Everyone I am using VB6 and MySQL, recently installed. I have a FlexGrid of items. I save them, and in a large order (25 or more) there will be at least one which causes an error Row cannot be located for updating. Some values may have been changed since it was last read. The values looked

Error message Row cannot be located for updating

2007-03-19 Thread Jonathan Trahair
I should add, of course all the other items (re-)save perfectly, there is nothing about that actual record which is different. MySQL 5.0.27 WinXP Set mconn = New ADODB.Connection mconn.ConnectionString = DRIVER={MySQL ODBC 3.51 Driver}; SERVER= mstrServerName ; DATABASE= mstrThisDatabase

Re: Bizarre InnoDB Error Message ( trx-active_trans == 0, but trx-conc_state != TRX_NOT_STARTED)

2007-01-01 Thread Jason J. W. Williams
a strange error message I received from InnoDB (5.0.27). Any help would be very much appreciated. Thank you in advance! Best Regards, Jason ---ERROR MESSAGE--- 061228 19:02:55 [ERROR] trx-active_trans == 0, but trx-conc_state != TRX_NOT_STARTED 061228 19:02:55 [Warning] MySQL

Re: Bizarre InnoDB Error Message ( trx-active_trans == 0, but trx-conc_state != TRX_NOT_STARTED)

2006-12-31 Thread Heikki Tuuri
: Jason, Jason J. W. Williams wrote: Hello Mr. Tuuri, I'm sorry to bother you directly about this. I have had very little luck finding anything on this in the forums or on Google and was hoping you could help me understand a strange error message I received from InnoDB (5.0.27). Any help would

Bizarre InnoDB Error Message ( trx-active_trans == 0, but trx-conc_state != TRX_NOT_STARTED)

2006-12-28 Thread Jason J. W. Williams
the DEADLOCK section. It almost appears as if the deadlock listing is so long that it runs out of buffer and doesn't get to the TRANSACTIONS or other status sections. Thank you in advance! Best Regards, Jason ---ERROR MESSAGE--- 061228 19:02:55 [ERROR] trx-active_trans == 0, but trx-conc_state

Error message when I run mysqld command to start the server

2006-06-02 Thread Swaroop.S
Hello, I have a problem in strating the server. I get these errors, please help me in this regard error C:\Program Files\EasyPHP1-7\mysql\binmysqld Can't start server: Bind on TCP/IP port: No error 060602 15:46:50 Do you already have

RE: Error message when I run mysqld command to start the server

2006-06-02 Thread Neeraj
You might have another mysql server running Stop you running server. Change the port and then try.. -Original Message- From: Swaroop.S [mailto:[EMAIL PROTECTED] Sent: Friday, June 02, 2006 3:38 PM To: mysql@lists.mysql.com Subject: Error message when I run mysqld command to start

Error message on starting MySQL Server

2005-12-24 Thread SOTL
'mysql' and promptly MySQL starts. In the SuSE 10.0 and SuSE 9.2 box [which I also have] when I type the command mysql I get the error message 'Access Denied Can Not Connect to the MySQL Server - Error 202'. I have received the identical error message in the Mandrake box in the past but only

Re: Error message on starting MySQL Server

2005-12-24 Thread SGreen
at the root command line and at the user command line I can enter the command 'mysql' and promptly MySQL starts. In the SuSE 10.0 and SuSE 9.2 box [which I also have] when I type the command mysql I get the error message 'Access Denied Can Not Connect to the MySQL Server - Error 202'. I

Fails to generate error message

2005-11-04 Thread Ritter, Geary
. Being new, I wrote this very close to the book I was following and thought I had everything I need so PHP would generate an error message. But all I get is !DOCTYPE HTML PUBLIC. Note the die() function in the code below. Also the showerror() function is basically a wrapper around a die

Re: Mysql privs via PHP? Problems - * Now with error message

2005-10-27 Thread T.J. Mahaffey
*head smack* Apologies for my newbie-ish first post to the list. (I know better than to exclude key details like *gasp* an error message.) Thanks to Michael's brilliant suggestion, I now have my error: Client does not support authentication protocol requested by server; consider upgrading

Re: Mysql privs via PHP? Problems - * Now with error message

2005-10-27 Thread Hassan Schroeder
T.J. Mahaffey wrote: Client does not support authentication protocol requested by server; consider upgrading MySQL client Does this have something to do with the OLD_PASSWORD issue in MySQL 5? The password format changed between MySQL 4.0 and 4.1. I have no idea what: 10.4's default

Re: Mysql privs via PHP? Problems - * Now with error message

2005-10-27 Thread Jasper Bryant-Greene
On Thu, 2005-10-27 at 13:05 -0500, T.J. Mahaffey wrote: Does this have something to do with the OLD_PASSWORD issue in MySQL 5? (I didn't think OSXServer 10.4 included MySQL v.5... ) My setup: Entropy PHP 4.3.11 MacOS X Server 10.4 10.4's default MySQL install The following command:

mysql and MH_DYLIB error message

2005-08-08 Thread Dave Viner
Hi, I'm trying to compile an apache module that uses mysql, but I keep getting this weird error message: ld: common symbols not allowed with MH_DYLIB output format with the -multi_module option /usr/local/mysql/lib/libmysqlclient.a(charset.o) definition of common _all_charsets (size 1024) /usr

error message when creating tables

2005-03-04 Thread Joppe A
Hello all, I have a problem with a script I have made, it always stops when it tries to creat a special table, I have been comparing this part of the script with the other parts that is working and cand find anything that looks wrong... The message MySQL write is: Can't create table

Re: error message when creating tables

2005-03-04 Thread Johan Höök
Hi, according to the manual: http://dev.mysql.com/doc/mysql/en/innodb-foreign-key-constraints.html 150 is a foreign key definition would be incorrectly formed for the altered table /Johan Joppe A wrote: Hello all, I have a problem with a script I have made, it always stops when it tries to creat a

Re: Error message on Solaris server - help

2005-01-16 Thread Gleb Paharenko
Hello. Not enough information to make a conclusion. For example, this can be a bug: http://bugs.mysql.com/bug.php?id=6523 where fulltext indexes doesn't work with subqueries. Can you provide a repeatable test case? Can you check if problem remains if you upgrade to latest release? Does

Error message on Solaris server - help

2005-01-14 Thread leegold
Getting the following runtime error messages on a Solaris server, Mysql 4.1.7 PHP 5.0.1: I try to search and: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /data/labweb/htdocs/getit/search010.php on line 123 Warning: mysql_num_rows(): supplied argument

Help!!! The error message SELECT in a stored procedure must have INTO

2004-11-12 Thread General Wen
Hi everyone, This is my first project in MySql database. I use VB.Net and OleDb to connect to MySql(5.0.1 alpha-max). When I call the stored produce, I get the error message: ERROR [42000][MySQL][ODBC 3.51 Driver][mysqld-5.0.1-alpha-max]You have an error in your SQL syntax. Check

Error message

2004-10-28 Thread Michael Satterwhite
If I attempt to insert a record that has a duplicate key on a unique index, I get an error message of the form: ERROR 1062: Duplicate entry '1' for key 2 I'd like to get a little more information so as to provide the user with a meaningful message. Specifically: what index is Key 2

Re: Error message on windows xp install

2004-10-06 Thread Martin Gainty
it by digging thru reams of doc Martin- - Original Message - From: [EMAIL PROTECTED] To: Brian Menke [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 12:08 PM Subject: Re: Error message on windows xp install I have had much better luck unzipping the Win32 binaries

Error message on windows xp install

2004-10-05 Thread Brian Menke
Hi everyone, I'm running windows XP professional and just downloaded the latest binary installer. I have used MySQL for a while (this is a new install), but for some reason when I double click the setup.exe icon, I get the following error message: The system file is not suitable for running MS

Re: Error message on windows xp install

2004-10-05 Thread SGreen
professional and just downloaded the latest binary installer. I have used MySQL for a while (this is a new install), but for some reason when I double click the setup.exe icon, I get the following error message: The system file is not suitable for running MS-DOS and Microsoft Windows applications

Re: MySQL server (4.0.18) crashed with the following error message

2004-09-13 Thread Heikki Tuuri
[mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 10:05 AM To: '[EMAIL PROTECTED]' Subject: MySQL server crashed with the following error message Hi, Yesterday, our production MySQL server died with the following error message. Please let us know if there are any patches

RE: MySQL server (4.0.18) crashed with the following error message

2004-09-07 Thread Pandu Pabbisetty
/mysqld-max: Shutdown Complete 040907 11:27:35 mysqld ended Thanks and Regards, Pandu _ From: Pandu Pabbisetty [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 10:05 AM To: '[EMAIL PROTECTED]' Subject: MySQL server crashed with the following error message Hi

Re: MySQL server crashed with the following error message

2004-09-02 Thread Heikki Tuuri
Order MySQL support from http://www.mysql.com/support/index.html .. Hi, Yesterday, our production MySQL server died with the following error message. Please let us know if there are any patches for this. 040830 19:52:13 InnoDB: Assertion failure in thread 27156583 in file

MySQL server crashed with the following error message

2004-08-31 Thread Pandu Pabbisetty
Hi, Yesterday, our production MySQL server died with the following error message. Please let us know if there are any patches for this. 040830 19:52:13 InnoDB: Assertion failure in thread 27156583 in file mem0pool.c line 493 InnoDB: Failing assertion: 0 InnoDB: We intentionally

Re: Fw: Mysql 4.0.18 Bug error Message

2004-04-16 Thread Egor Egorov
Dear Sir, OS : Win XP Professional, Mysql 4.0.18 Category :WinMySQLAdmin 1.4 Description: I've encountered bug error problem using Mysql 4.0.18 ver when in Dos Command prompt, using D:/mysql/bin/mysql --user root-- password give error message ERROR 2003 : Can't connect

Mysql 4.0.18 Bug error Message

2004-04-14 Thread Kelvin Chang
Dear Sir, OS : Win XP Professional, Mysql 4.0.18 Category :WinMySQLAdmin 1.4 Description: I've encountered bug error problem using Mysql 4.0.18 ver when in Dos Command prompt, using D:/mysql/bin/mysql --user root-- password give error message ERROR 2003 : Can't connect

Fw: Mysql 4.0.18 Bug error Message

2004-04-14 Thread Kelvin Chang
- Original Message - From: Kelvin Chang To: [EMAIL PROTECTED] Sent: Thursday, April 15, 2004 3:49 AM Subject: Mysql 4.0.18 Bug error Message Dear Sir, OS : Win XP Professional, Mysql 4.0.18 Category :WinMySQLAdmin 1.4 Description: I've encountered bug error problem using Mysql

RE: Weird Error message

2004-04-02 Thread Jason Chuong
, April 01, 2004 1:16 PM To: Jason Chuong; [EMAIL PROTECTED] Subject: Re: Weird Error message It would really help if you could tell us at least which version of MySQL you are using. It might also help to know which OS you are using and what command you issued to get this error message. Rhino

Weird Error message

2004-04-01 Thread Jason Chuong
Hi All, has anyone seen this error message before 040331 0:26:00 ft_read_next: Got error 127 when reading table ./ 040331 0:26:38 ft_read_next: Got error 127 when reading table ./ 040401 0:23:10 ft_read_first: Got error 127 when reading table ./ 040401 0:23:19 ft_read_next: Got error

Re: Weird Error message

2004-04-01 Thread Rhino
It would really help if you could tell us at least which version of MySQL you are using. It might also help to know which OS you are using and what command you issued to get this error message. Rhino - Original Message - From: Jason Chuong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: mysterious can't connect error message in our logs(2)

2004-03-25 Thread Sinisa Milivojevic
Sasha Pachev writes: Jigal van Hemert wrote: It's a bug. I would recommend to patch libmysql.c for now until MySQL developers fix it. -- Sasha Pachev Create online surveys at http://www.surveyz.com/ Our client side uses select() but only when waiting for data, and not on teh

Re: mysterious can't connect error message in our logs(2)

2004-03-24 Thread Sasha Pachev
Jigal van Hemert wrote: The continuing saga: Can't connect to MySQL server on '192.168.13.205' (4) Our sysadmin has been searching in the sources of the MySQL client and came up with this: The errormessage (4) is probably (only place where this error could be found) raised by this fragment in

mysterious can't connect error message in our logs

2004-03-22 Thread Jigal van Hemert
Hi list, We recently installed a new MySQL server (Redhat 8, MySQL 4.0.18, same as old machine, but with more powerful hardware) and every now and then the following error appears in the errorlog (the result of the mysql_error() function of PHP): Can't connect to MySQL server on

mysterious can't connect error message in our logs(2)

2004-03-22 Thread Jigal van Hemert
The continuing saga: Can't connect to MySQL server on '192.168.13.205' (4) Our sysadmin has been searching in the sources of the MySQL client and came up with this: The errormessage (4) is probably (only place where this error could be found) raised by this fragment in libmysql.c: if

wierd error message from mysqld

2004-02-27 Thread Brent Bailey
Hello, Im running mysql on a Freebsd 4.9.. In going through my logs this morning I saw this error. I find it odd that mysqd would try to open the /etc/hosts.allow file .. this makes me think that someone issued the command through mysql .with that in mind. 1. Is there a way to get

Re: wierd error message from mysqld

2004-02-27 Thread Sasha Pachev
Brent Bailey wrote: Hello, Im running mysql on a Freebsd 4.9.. In going through my logs this morning I saw this error. I find it odd that mysqd would try to open the /etc/hosts.allow file .. this makes me think that someone issued the command through mysql .with that in mind. 1. Is

Mysql error message

2004-02-04 Thread vincent\.gueu
I've installed mysql under Linux and what I do, I always have this number of error message :040204. Please I need your help! Thank u Vinx Accédez au courrier électronique de La Poste : www.laposte.net ; 3615 LAPOSTENET (0,34€/mn) ; tél : 08 92 68 13 50 (0,34€/mn) -- MySQL General Mailing

Re: Mysql error message

2004-02-04 Thread vpendleton
Are you able to start the MySQL server? Is there anything being logged to the hostname.err log? Original Message On 2/3/04, 7:23:50 PM, vincent.gueu [EMAIL PROTECTED] wrote regarding Mysql error message: I've installed mysql under Linux and what I do, I always have this number of error

RE: Mysql error message

2004-02-04 Thread Mike Johnson
From: vincent.gueu [mailto:[EMAIL PROTECTED] I've installed mysql under Linux and what I do, I always have this number of error message :040204. Please I need your help! Thank u I have no idea what your problem is, but I'd be amused if you had the number 040205 tomorrow (those being

looping error message

2003-12-22 Thread Malka Cymbalista
We are running Apache 1.3.26 with mod perl 1.26, perl 5.6.1, and mysql 3.23.49 on a Sun Solaris machine. Every now and then, one of the scripts we are runing gives the following error message: null: DBD::mysql::st fetch failed: fetch() without execute() at /usr/local/lib/perl5/site_perl/local

Re: looping error message

2003-12-22 Thread Jeremy Zawodny
On Mon, Dec 22, 2003 at 11:05:23AM +0200, Malka Cymbalista wrote: We are running Apache 1.3.26 with mod perl 1.26, perl 5.6.1, and mysql 3.23.49 on a Sun Solaris machine. Every now and then, one of the scripts we are runing gives the following error message: null: DBD::mysql::st fetch failed

Re: looping error message

2003-12-22 Thread Amanullah
of the scripts we are runing gives the following error message: null: DBD::mysql::st fetch failed: fetch() without execute() at /usr/local/lib/perl5/site_perl/local/Calendar.pm line 1667. The really annoying thing is that the error message keeps getting written to to the error log until it fills up the disk

Undefined symbols error message

2003-12-06 Thread . .
database to start creating Tables only to receive the following error message in the terminal application: dyld: bin/mysql Undefined symbols: bin/mysql undefined reference to _BC expected to be defined in /usr/lib/libSystem.B.dylib bin/mysql undefined reference to _PC expected to be defined

Error message problem

2003-11-17 Thread Jeff McKeon
I just upgraded to Server version 4.0.15-standard, I just tried to do a query and got a syntax error but the error message is incomplete. ERROR 1064: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'where

RE: Error message problem

2003-11-17 Thread Victor Pendleton
Was there actually a syntax error? Can you please post the query? The display for the error message appears to be truncated. -Original Message- From: Jeff McKeon [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 8:44 AM To: [EMAIL PROTECTED] Subject: Error message problem I just

RE: Error message problem

2003-11-17 Thread Jeff McKeon
Yes there was a syntax error. I used an and instead of in the where clause. However, my concern is that the error message was truncated. Jeff -Original Message- From: Victor Pendleton [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 9:53 AM To: Jeff McKeon; [EMAIL

error message

2003-10-17 Thread Gregory Norman
Hello, I am new to mysql trying to learn by following the instructions from a trainning book. While following the instructions from the book that I am using I got the following error message, without the quotes, Column count doesn't match value count at row 1. I entered the following command

RE: error message

2003-10-17 Thread Rob
','database_name','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); -Original Message- From: Gregory Norman [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 10:32 AM To: [EMAIL PROTECTED] Subject: error message Hello, I am new to mysql trying to learn by following the instructions from

Re: error message

2003-10-17 Thread Nitin
','Y','Y','Y','Y'); -Original Message- From: Gregory Norman [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 10:32 AM To: [EMAIL PROTECTED] Subject: error message Hello, I am new to mysql trying to learn by following the instructions from a trainning book. While following

Re: error message

2003-10-17 Thread Director General: NEFACOMP
and the rest should be changed into their defaults. Just try to check what are the indexes, Thanks Emery - Original Message - From: Gregory Norman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 17, 2003 10:31 Subject: error message Hello, I am new to mysql trying

Re: error message

2003-10-17 Thread Richard Brenner
Hi, You can see the table structure with the command: desc host; after logging in to mysql using the table mysql Greetings, Richard - Original Message - From: Gregory Norman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 17, 2003 10:31 AM Subject: error message

Re: error message

2003-10-17 Thread Director General: NEFACOMP
PROTECTED] Sent: Friday, October 17, 2003 12:44 Subject: Re: error message Thanks for your reply. I used the example from Rob and it worked. Does this mean I will have to name all of the columns in a table with each command? Gregory On Friday, October 17, 2003, at 05:13AM, Director General

Re: Changing error message

2003-08-02 Thread Heikki Tuuri
4:12 AM Subject: Changing error message now when using the C:\mysql\bin\mysqld --standalone the error message changes to: Can't find messagefile 'c:mysql hare\english\errmsg.sys' NO that is not typed incorrectly! mysql is has no idea where is wants to find that file. I have downloaded

Re: Changing error message

2003-08-02 Thread S Johnson
Heikki, Thanks so much! That did the trick - mysqld is up and humming. SJohnson Heikki Tuuri wrote: Hi! mysqld thinks some character pairs like \b and \s are special characters. You should replace basedir=C:\mysql\bin language=c:\mysql\share\english\ by basedir=C:/mysql/bin

error message: C:mysqin\share\english\errmsg.sys

2003-08-01 Thread S Johnson
Trying to start first time using command: C:\mysql\bin\mysqld --standalone Yields this error message: Can't find messagefile'C:mysqin\share\english\errmsg.sys'aborting Now in C:\mysql\share\english\ there is an errmsg.sys Do you have any language=C:/mysqin/share/english/ entry

Changing error message

2003-08-01 Thread Mysql
now when using the C:\mysql\bin\mysqld --standalone the error message changes to: Can't find messagefile 'c:mysql hare\english\errmsg.sys' NO that is not typed incorrectly! mysql is has no idea where is wants to find that file. I have downloaded the file twice now, with same result below

error message during connection

2003-06-27 Thread Gantier
Hello, I work with apache, tomcat and linux redhat 7.3 and mysql 4.0.9 When I try to connect to my database from my application with the user XXX with password YYY, the next message appears : INVALID AUTHORIZATION SPECIFICATION : ACCESS DENIED FOR USER '[EMAIL PROTECTED] 127.0.0.1' USING

Re: error message during connection

2003-06-27 Thread gerald_clark
'localhost 127.0.0.1' is not a valid host. Use 'localhost' if you want to use the local socket. Use '127.0.0.1' if you want to use the TCP port. Gantier wrote: Hello, I work with apache, tomcat and linux redhat 7.3 and mysql 4.0.9 When I try to connect to my database from my application with the

Re: error message during connection

2003-06-27 Thread Nils Valentin
2003 6 27 22:39Gantier : Hello, I work with apache, tomcat and linux redhat 7.3 and mysql 4.0.9 When I try to connect to my database from my application with the user XXX with password YYY, the next message appears : INVALID AUTHORIZATION SPECIFICATION : ACCESS DENIED FOR USER '[EMAIL

error message

2003-06-26 Thread Steven Dowd
can someone help me with this error, with my database in MySQL 3.23.49 SQL-query : SELECT * FROM `traffic`.`trafficdb` LIMIT 132947 MySQL said: Got error 127 from table handler have I lost the data, or is there something odd happened which i

Re: error message

2003-06-26 Thread Martin's - Web Dept.
Just a guess from a raw newbie, but try using: `traffic.trafficdb` instead of `traffic`.`trafficdb` Ryan Thursday, June 26, 2003, 1:13:03 PM, you wrote: SD can someone help me with this error, with my database in MySQL 3.23.49 SD SD SQL-query : SD SELECT * SD FROM

RE: error message

2003-06-26 Thread Mike Hillyer
Sounds like a corrupt table, try REPAIR TABLE: http://www.mysql.com/doc/en/REPAIR_TABLE.html Regards, Mike Hillyer www.vbmysql.com -Original Message- From: Steven Dowd [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 11:13 AM To: [EMAIL PROTECTED] Subject: error message

RE: error message

2003-06-26 Thread development
To: [EMAIL PROTECTED] Subject: error message can someone help me with this error, with my database in MySQL 3.23.49 SQL-query : SELECT * FROM `traffic`.`trafficdb` LIMIT 132947 MySQL said: Got error 127 from table handler have I lost

error message

2003-06-06 Thread Juan Carlos Escobar Gzz
Hi! I have executed this instruction: $sess = mysql_db_query($db,select * from session where ID = '$session'); $brow = mysql_result($sess,0,browser); Why display this message:? Warning: Unable to jump to row 0 on MySQL result index 4 in What is my error?

error message about error messages file.

2003-05-30 Thread Jeff Pierce
with the the error 030529 11:16:35 mysqld started 030529 11:16:36 Error message file '/usr/share/mysql/english/errmsg.sys' had onl y 218 error messages, but it should contain at least 237 error messages. Check that the above file is the right version for this program! 030529 11:16:36 Aborting 030529 11:16

Re: opaque error message [2]

2002-12-08 Thread Dennis Allison
I have found a work around, but I do wonder what the problem is with MySQL and BDB tables. When I rerun the load with the table type set to ISAM it all works. Looks like there may be some limitation of the BDB implementation I am triggering. In my previous post, I reported receiving an Error

Error Message Documents - where to find it?

2002-12-05 Thread Jason Hall
Where can i find documents with the description of mysql error code returned by the mysql daemon? - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list

RE: Error Message Documents - where to find it?

2002-12-05 Thread Jennifer Goodie
http://www.mysql.com/doc/en/perror.html perror [errornum] i.e. perror 13 Error code 13: Permission denied -Original Message- From: Jason Hall [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 11:59 AM To: '[EMAIL PROTECTED]' Subject: Error Message Documents - where to find

Re: Error Message Documents - where to find it?

2002-12-05 Thread Michael She
The manual: http://www.mysql.com/doc/en/perror.html It'll return the error string. At 02:59 PM 12/5/2002 -0500, Jason Hall you wrote: Where can i find documents with the description of mysql error code returned by the mysql daemon?

Re: Error Message Documents - where to find it?

2002-12-05 Thread Stefan Hinz, iConnect \(Berlin\)
http://iConnect.de Heesestr. 6, 12169 Berlin (Germany) Telefon: +49 30 7970948-0 Fax: +49 30 7970948-3 - Original Message - From: Jason Hall [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 05, 2002 8:59 PM Subject: Error Message Documents - where to find it? Where

Cant Explain Error Message

2002-12-01 Thread Will K.
Hello. I am trying to create a table in one of my databases using textbook code, but it is giving me an error message. Here is how it reads: mysql create TABLE messages - ( - id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - forum int not null, - author char(255) not null

  1   2   >