我想知道如何處理joomla中約束創建的mysql表。已經填充了數據和id 用於例如如何在Joomla中插入多個帶有外鍵的表?
theater_table
id , name, description, image, address, tel, fax ,email
theater_facility_table
id, theater_id, facility_id
facility_table
id, name, description, image
設施表的主鍵。在創建劇場時,我正在爲它添加設施。我創建了設施和劇院JTables。
我還必須創建theater_facility JTable嗎?
使用影院模型類如何將數據插入到theater_facility表。我知道我可以在影院存儲成功後插入數據,創建並調用storeTheaterFacility()方法,其中包含插入查詢以保存所需的信息。但我覺得這不是一個好方法。請幫我解決這個問題。
感謝您的幫助,我正在學習K2 :) – Sara