Model CakePHP'de Çoklu (sharding) tablo

0 Cevap php

Aşağıdaki gibi birçok tablolar vardır:

 table_2010
 table_2009
 table_2008
 table_2007
     .
     .

MySQL 4 + PHP5 + CakePHP'ye 1.3 kullanma

Benim Soru

How to treat these tables in a model? I wanna treat like this

  Table->find('all',"2010",array("conditions"=>""));

0 Cevap