Re: [transfer-dev] No records returned: CF7 and oracle

2011-01-04 Thread Pedro Bezunartea López
Hi Mark, So in the debug output - when you see the Transfer generated SQL, how many rows does it return? None. The table actually has just one row, that I dump using the transfer.list(...Session) query. But none using the listByQuery method (after the proper setParam, of course), or

[transfer-dev] Non case sensitive searches, revisited

2011-08-24 Thread Pedro Bezunartea López
Last April I offered my time to solve this issue but, unfortunately didn't receive any responses. The time has come for me to solve this issue once and for all. I'd really appreciate any feedback. The problem: Transfer does not support functions, so it's not possible to do non case sensitive

[transfer-dev] Re: Non case sensitive searches, revisited

2011-08-30 Thread Pedro Bezunartea López
I have researched quite a bit about ANTLR, and I have now a clear idea what needs to be done to the TQL lexer and parser. This is what I've done: - in the file where TQL grammar is defined tql-20070315163054.jar, I modified the file Tql.g, from: conditionBasicClause : PROPERTY_IDENTIFIER (

[transfer-dev] Re: TQL Many-To-Many Bidirectional Relationship

2011-08-31 Thread Pedro Bezunartea López
Hi Robert, I think that's well explained in the documentation: http://docs.transfer-orm.com/wiki/Managing_Relationships_and_Compositions.cfm The short answer is that having established a OneToMany relation, Foo to Bars, you can use the method Bar.getParentFoo(). HTH, Pedro -- Before

Re: [transfer-dev] Re: Non case sensitive searches, revisited SOLVED! ... for now

2011-09-07 Thread Pedro Bezunartea López
Thanks for the tip Mark, glad to hear from you again! One question though, I remember checking the feature requests list somewhere and this was already in. I haven't noticed any updates for quite a while, and I don't know what the plan is (it's been working perfectly since v1.1) . Anyway,

[transfer-dev] Re: Maintaining Cache w/ Framework Reload

2011-09-16 Thread Pedro Bezunartea López
Hi again, Robert, My experience is that unless you only modify the views, you need to reinit the framework, and loose cached objects... honestly, I don't see how you could keep objects cached that may have changed their behaviour when you modify their code. :P Cheers, Pedro. -- Before