Displaying 4 results from an estimated 4 matches for "email_address_id".
2006 May 19
2
Problem with joins and overlapping field names
...:per_page => 20,
:joins => ''LEFT JOIN messages on
messages.conversation_id = conversations.id ''+
''LEFT JOIN email_addresses on
email_addresses.id = messages.email_address_id'',
:conditions => [''email_addresses.email =
?'', @email_address.email])
producing this sql staement:
SELECT * FROM conversations LEFT JOIN messages on messages.conversation_id =
conversations.id LEFT JOIN email_addresses on email_a...
2006 May 25
4
Does TMail support Nested Multipart Messages? (Repost)
...e(:conversations,
:per_page => 20,
:joins => ''LEFT JOIN messages on
messages.conversation_id = conversations.id ''+
''LEFT JOIN email_addresses on
email_addresses.id = messages.email_address_id'',
:conditions =>
[''email_addresses.emai_______________________________________________
Rails mailing list
Rails@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails
!
So the message is broken off at some point that...
2006 Jun 26
2
n-way has_mant :through
...;t cut it.
Do I need to setup separate join tables for each association
(people_physical_addresses, people_phone_numbers, etc), or should I
have a ''contacts'' (for lack of a better name at the moment) table with
several columns for person_id, physical_address_id, phone_number_id,
email_address_id, & contact_type. Or should I do something else entirely?
Thanks!
2006 Jun 23
3
form_remote_tag is not passing form params
I''ve searched and searched and searched again, and I cannot find any
help with this problem. There''s an identical problem on this forum, but
it was never resolved. I''ll try to re-open the subject with a bit more
information.
Problem: The form_remote_tag() method in my "list" view is not passing
the params[] hash of the values stored within my form.