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:
ColdFISH is developed by Jason Delmore. Source code and license information available at coldfish.riaforge.org
<package name="post">
<object name="Post" table="post_table">
<id name="postid" column="postid" type="numeric"/>
<property name="postText" type="string" column="postText" />
<property name="postDate" type="date" column="postDate" />
</object>
</package>
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>