search for: date_item

Displaying 1 result from an estimated 1 matches for "date_item".

Did you mean: date_items
2006 Jul 08
9
How to handle dynamically columned tables in rails
...''t result in the end user having to create new tables is to have a table that has core columns for ALL lists (id, title, description) and then join that table to columns by type of data on the fly. So, select * from core_list_items where list_num=X and then join it with columns in the Date_items table and the text_items table and then the date_items table. I have to do multiple join statements, sometimes from the same table. ID TITLE DESCRIPTION SONG_NAME (from text table) PUB_DATE (from date table) RECORD_LABEL (also from text table). I have made this work in PHP, but is there a wa...