Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sys_sbuアプリと同じデータベースにあるというテーブルからデータを読み取る必要があります。ただし、tr_すべてのテーブルのプレフィックスに設定しました。私のモデルで使用しようとすると$useTable = 'sys_sbu'、 と判断されましたtr_sys_sbu。プレフィックスを無視するにはどうすればよいですか?
sys_sbu
tr_
$useTable = 'sys_sbu'
tr_sys_sbu
だから、これを試してください:
class ExampleModel{ var $useTable = "example"; var $tablePrefix = ""; }
もう大丈夫です:D