From: Dave Rolsky Date: December 5 2001 6:58pm Subject: Re: Strange Messages in STDERR List-Archive: http://lists.mysql.com/perl/1560 Message-Id: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE On Wed, 5 Dec 2001, Ni=F1o Fision wrote: > I have a problem. Something related with the mysql (maybe the DBI module, > maybe the DBD::mysql module or maybe the mysql itself) prints to the STDE= RR > many messages like: > > SV =3D RV(0x849c004) at 0xbffff700 > REFCNT =3D 1 > FLAGS =3D (ROK,READONLY) > RV =3D 0x849b5fc > > I have: > > DBD::mysql=A0=A0=A0=A0=A0=A0 2.0902 > DBI=A0=A0=A0=A0=A0 =A0=A0=A0=A0=A0=A0=A0 1.20 > DBI::DBD=A0=A0=A0=A0=A0=A0=A0=A0 11.02 > > and > > Mysql 4.0 (alpha) > (when i had mysql 3.23 i had the same problem, but i had not it when i ha= d > mysql 3.21) > > Can you help me???? > > Plese, it is important, because it's more dificult to find real errors > between so many "false" errors. This probably means that you are trying to either serialize or de-serialize a DBI object. Don't do it, it won't work, and you'll get loads of useless warnings printed out. This may (I can't remember) also happen when forking a running program that has a database handle in existence. -dave