Just a quick note to let people know that Mark Mandel has released Transfer 1.1. You can get full details on his blog entry. There is a list of new features, but what impresses me most are the new TQL custom tags. I'm stealing from his blog post, but you can now do queries like so:
<cfimport prefix="report" taglib="/transfer/tags"><--- Do list operations ---> <t:query name="result" transfer="#getTransfer()#"> select u.firstName, u.lastName from user.User as u where u.email like <t:queryparam value="%example.com" type="string"> </t:query>
Pretty snazzy I say. Anyway, if you still haven't given a Transfer a try, download it now.
Archived Comments
Shouldn't the import use the prefix t and not report?
<cfimport prefix="t" taglib="/transfer/tags">
Looks to be a simple typo on his blog, so it carried over when I copied/pasted.
Man, that is a GREAT idea to help make the framework appealing to a larger population. Extremely simple and easy to translate from a typical non-ORM approach of cfquery usage.
Agreed. Before life got busy at work I was planning a series of blog entries on Transfer 1.1. I hope to have time around Christmas now. ;)