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.