এটি ব্যবহার করে ->insert()
এবং কলামগুলি সন্নিবেশ করানোর জন্য স্ট্রিংগুলির একটি অ্যারের ->values()
সাথে সম্পন্ন করা যায় $values
।
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$columns = array('col_one','col_two');
$values = array();
// Proper escaping/quotes should be done here, and probably in a loop, but cluttered the answer, so omitted it
$values[] = '1, "one"';
$values[] = '2, "two"';
$values[] = '3, "three"';
$values[] = '999, "nineninetynine"';
$query->insert($db->quoteName('#__tablename'));
$query->columns($columns);
$query->values($values);
$db->setQuery($query);
$db->query();
এসকিউএল যা ব্যবহার করে উত্পাদিত হয় echo $query->dump()
INSERT INTO `xyz_tablename`
(col_one,col_two) VALUES
(1, "one"),(2, "two"),(3, "three),(999, "nineninetynine")