Happy new year to everyone

Thanks to all the people that follow mytweets and blog posts. 2010 hasn't been the greatest of years for me personally but here is to 2011 being a lot better! (with more posts)

Posted: 31-Dec-2010

View: 2170

Permalink: here

My blog has moved

Please update your bookmarks and feeds for my site.

I now have a Mango Blog at:

http://www.andyjarrett.com/blog

Feed URL: http://feeds.feedburner.com/andyjarrett

Posted: 12-May-2009

View: 1925

Permalink: here

Transfer to offer Training, Support, and certification

Mark Mandel is transforming his ORM Transfer into Professional Open Source Software. This means that Mark will be offering paid for services based around the the ORM that will include training, support, and certification.

If you are interested in any of this make sure you let him know via the his contact form, or via the Transfer Google Group.

Read all about it at http://www.compoundtheory.com/?action=displayPost&ID=281

Transfer on ColdFusion Community

Posted: 21-Jan-2008

View: 1724

Permalink: here

Advanced Transfer ORM presentation recording

CFFrameworks arranged another online presentation with Mark Mandel who gave an in depth workshop on advanced Transfer ORM techniques.

Lasting just short of an hour the presentation covered

  1. Caching with Transfer
  2. Observable Events
  3. Decorators
  4. Transfer Query Language (TQL)

Check it out at(and all the chatter) at http://adobechats.adobe.acrobat.com/p36459808/

Posted: 28-Nov-2007

View: 2865

Permalink: here

Transfer and TQL

I love working with Transfer and Mark Mandel has done an amazing feat of giving it some really good documentation. But I remember when I was getting started I was looking for a rough guide to the TQL language for Transfer and how to implement it. So based on all the information at www.transfer-orm.com/transfer/documentation/ here's a quick start to TQL.

Please note: I am presuming you already know how to set up Transfer and have basic knowledge of how it works.

For this example here is our Transfer.xml configuration file:

view plain print about
1<package name="post">
2    <object name="Post" table="post_table">
3        <id name="postid" column="postid" type="numeric"/>
4        <property name="postText" type="string" column="postText" />
5        <property name="postDate" type="date" column="postDate" />
6    </object>
7</package>

Posted: 23-Oct-2007

View: 3872

Permalink: here

Transfer and a Java Loader problem

I've been slowly getting into Mark Mandel's Transfer recently. The problem is the last time I was testing the ORM was before the CF8 upgrade. So last night as I was playing around I got the following error message"

Posted: 21-Aug-2007

View: 4450

Permalink: here