Possible Duplicate:
How do I add more than one row with Zend_Db?
everyone,
I need to have a bulk insert in zend framework. For normal sql I have the below query, I want to do the same in zend framework.
INSERT INTO `dbname`.'tablename` (`id`, `user_id`, `screen_name`, `screen_name_server`) VALUES (NULL, '15', 'test', 'test'), (NULL, '15', 'test', 'test');
Thanks.