我有兩個數據庫用戶和magento。 magento駐留在LAN中的遠程機器上。 和用戶駐留在我的本地計算機上。如何分頁來自cakephp中不同數據庫表的數據?
他們之間的連接和從該magento數據庫提取數據工作正常 但我想分頁magento的表數據。 簡單顯示它已完成,但對於分頁我們需要模型名稱,以及如何可以有其他數據庫的模型?
// in controller action
$this->Vendor->changeDataSource('vsdatabase');
if($this->changeDbSource('vsdatabase'))
{
$magento_data = $this->Vendor->query("SELECT * from admin_user");
$this->set('products',$magento_data);
}
and changeDataSource($newdb) is defined in model file
and changeDbSource($database='default') in controller
那麼我該如何解決我的分頁問題? 我已經完成了沒有分頁的數據提取。 或任何其他選項來做到這一點? 謝謝,