[fw-general] multiple zend queues

2011-08-22 Thread Fred Garlov
Hello,

in zend queue there is a method createQueue, which of cource create as
much queues as you want (DB backend). But how can I use other queues
than first one? Im always getting first queue and documentation
doesn't show how to use multiple queues.

$queue = new Zend_Queue('Db', $config);
$queue-createQueue('first', 1);
echo   $queue-getName();



$secondQueue = new Zend_Queue('Db', $config);
$secondQueue-createQueue('second', 1);
echo $secondQueue-getName() //prints 'first'



Is there also possibility to print all jobs currently processing?


Regards
Fred

-- 
List: fw-general@lists.zend.com
Info: http://framework.zend.com/archives
Unsubscribe: fw-general-unsubscr...@lists.zend.com




[fw-general] Re: multiple zend queues

2011-08-22 Thread Fred Garlov
Oh, I've overseen name option in config array...

On Mon, Aug 22, 2011 at 1:27 PM, Fred Garlov
fredgarlo...@googlemail.com wrote:
 Hello,

 in zend queue there is a method createQueue, which of cource create as
 much queues as you want (DB backend). But how can I use other queues
 than first one? Im always getting first queue and documentation
 doesn't show how to use multiple queues.

        $queue = new Zend_Queue('Db', $config);
        $queue-createQueue('first', 1);
        echo   $queue-getName();



        $secondQueue = new Zend_Queue('Db', $config);
        $secondQueue-createQueue('second', 1);
        echo $secondQueue-getName() //prints 'first'



 Is there also possibility to print all jobs currently processing?


 Regards
 Fred


--
List: fw-general@lists.zend.com
Info: http://framework.zend.com/archives
Unsubscribe: fw-general-unsubscr...@lists.zend.com




Re: [fw-general] Zend_Db_Table

2011-08-22 Thread Konr Ness
How do you know it does not return anything. What does count($drawings)
equate to?

Do you receive any errors?

Are you sure you have your DB config set properly and have permissions to
the DB?

I am not familiar with Firebird, but you should be able to use Zend_Db to
make SQL queries directly to the database like so:

$drawingModel-getAdapter()-fetchAll('SELECT * FROM `DRAWINGS`');

If that doesn't return the values you expect then there is probably a
configuration problem with your DB.

Konr

On Fri, Aug 19, 2011 at 1:24 PM, Steve Rayner srayne...@googlemail.comwrote:

 What am I doing wrong here;


 $drawingModel = new Spares_Model_Drawings();

 $drawing = $drawingModel-find(2);

 This does not return any rows even though there is a row with a primary key
 of 2.

 This is my model;

 class Spares_Model_Drawings *extends *Zend_Db_Table_Abstract{

protected $_name = 'DRAWINGS';

protected $_primary = 'DRAWING_REF';

 }

 My database is Firebird. I am using Zend Framework 1.10.0