Re: can not re-use a object

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Ok thanks a lot!

Joe Wollard wrote:

>> I have try to use the same $db and to create a new one...
>
> Are you trying to use the $db object inside of another function later 
> in the code? If so you'll need to use $GLOBALS['db'] instead.
> Sorry, this is the only thing I can think of with your description 
> Have you tried a simple test program that does nothing more than 
> execute your example below 2 or more times?
>
> ...well, wait, now I did have an issue where the constructor of an 
> object was not being executed while mmcache was running. Do you run 
> mmcache or any other code caching mechanism? (phpinfo() would tell 
> you if you're not sure)
>
> Good luck!
>
>
> On Sep 19, 2005, at 6:26 AM, pcarrie@xxxxxxxxxxx wrote:
>
>> Hi! Sorry about the bad english :-[
>> I try to re-use an object that manage the mysql connections (it is  code
>> from sugarcrm)
>> $db = new PearDatabase();
>> $var = "'" . $user_id ."'";
>> $pregunta = "SELECT user_name  FROM users WHERE id = $var";
>> $resultado = $db->query($pregunta, true, "Error filling in user 
>> array: ");
>> $row = $db->fetchByAssoc($resultado);
>> $user_name= $row['user_name'];
>>
>> if i try a new query (can be the same one or an other one), i  become
>> "0"
>> as result and no error message
>> I have try to use the same $db and to create a new one, i have try to
>> close the descriptor
>> Thanks for help
>> pascal
>>
>> -- 
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux