<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Glyn Jackson&apos;s Web Design and ColdFusion Blog - ColdFusion 9</title>
			<link>http://www.cfcoffee.co.uk/index.cfm</link>
			<description>Glyn Jackson&apos;s ColdFusion, Web Design and Web Development Blog. Award Winning Web Design in Staffordshire and Manchester, UK.</description>
			<language>en-gb</language>
			<pubDate>Sat, 04 Sep 2010 20:33:15 +0100</pubDate>
			<lastBuildDate>Tue, 31 Aug 2010 23:50:00 +0100</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>cfsparky@gmail.com</managingEditor>
			<webMaster>cfsparky@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>cfsparky@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>My First ColdBox ORM Setup</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2010/8/31/My-First-ColdBox-ORM-Setup</link>
				<description>
				
				&lt;p&gt;As promised I will be posting on my own experiences in setting up CF9&apos;s inbuilt ORM with ColdBox. Most of this will be for my own reference, if I am making a mistake please point them out. Hopefully these posts will help others starting out with CB and CF9 ORM.&lt;/p&gt;

&lt;p&gt;My first post starts at the beginning, how to setup ORM to use in your application. For this example I am using the M6 release of ColdBox so some of this may change by the final release.&lt;/p&gt;

&lt;h4&gt;Right, let&apos;s start.&lt;/h4&gt;

&lt;p&gt;First like a normal CF9 ORM project you have to tell your application you are using ORM. ColdBox has it&apos;s own set of tools which help integrate hibernate. The first is must if you&apos;re going to use hibernate within CB, and that&apos;s the event handler! I would suggest reading up on the ORM event handler as it does a lot more and shows you how to setup Autowire to inject objects into your entities etc. &lt;/p&gt;

&lt;code&gt;
	// ORM Setup
	this.ormEnabled = true;
	this.datasource = &quot;myDS&quot;;
	this.ormSettings = {
		dbcreate = &quot;update&quot;,
		dialect = &quot;MicrosoftSQLServer&quot;,//Specifies the dialect. 
		logSQL = true,
		eventhandling = true,
		eventhandler = &quot;model.ORMEventHandler&quot;,
		flushAtRequestEnd = false
	};
&lt;/code&gt; 

&lt;p&gt;As you can see you have added eventhandling = true,
  and eventhandler = &quot;model.ORMEventHandler&quot; to the code above. You will now need to add the ORMEventHandler.cfc to your model folder (providing you are following the same folder structure of course). &lt;/p&gt;

&lt;p&gt;Next I am going to setup my first Domain Object. Depending on how your using it you will need to create this in the same model folder.&lt;/p&gt;

&lt;p&gt;For this example we will setup a simple object and I will assume you already have some understanding of this.&lt;/p&gt;
				 [More]
				</description>
				
				
				<category>ColdFusion 9</category>
				
				<category>ColdBox</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Tue, 31 Aug 2010 23:50:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2010/8/31/My-First-ColdBox-ORM-Setup</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Dear ColdBox</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2010/8/29/Dear-ColdBox</link>
				<description>
				
				&lt;p&gt;It&apos;s been hard for me to get my head around CF9 ORM and  ColdBox. The first mistake was using ORM within ColdBox for the first time. My  life would have been easy if I had just started at the beginning with ORM. Why did  I do it! Why!&lt;/p&gt;
&lt;p&gt;
  Anyhow, I am committed! Truly, exciting and frustrated at  the same time. The ColdBox support group is really helpful and if I may say incredibly  patient at helping me with my stupid questions!&lt;/p&gt;
&lt;p&gt;
  Over the next few weeks I am going to write up my own experiences  with ORM and set up a demo using the M6 version of ColdBox. It won&apos;t be from an  authority point of view, but from a beginners venture into ORM. In the mean  time I want to just remind people of a post Luis made about community and support. &lt;/p&gt;
&lt;p&gt;
  &lt;a href=&quot;http://groups.google.co.uk/group/coldbox/browse_thread/thread/80126f02a472af39&quot; target=&quot;_blank&quot;&gt;Post Here&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Luis gives back so much with this Framework it&apos;s made my life a lot easier, if it&apos;s helped you, then why not do your bit to.&lt;/p&gt;
				
				</description>
				
				
				<category>ColdFusion 9</category>
				
				<category>Chit Chat and Reviews</category>
				
				<category>ColdBox</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Sun, 29 Aug 2010 23:20:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2010/8/29/Dear-ColdBox</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Layer Example Added to RIAForge</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2010/8/6/Layer-Example-Added-to-RIAForge</link>
				<description>
				
				&lt;p&gt;I have had requests for an example of the CFC I used in the &quot;Creating a simple Layar with ColdFusion&quot; Tutorial. I decided to comment on the CFC and upload it to &lt;a href=&quot;http://www.riaforge.org/&quot; target=&quot;_blank&quot;&gt;RIAForge&lt;/a&gt;. So if anyone wants it you can find the project &lt;a href=&quot;http://layarcfc.riaforge.org/&quot; target=&quot;_blank&quot; title=&quot;Layar Service Provider CFC&quot;&gt;there&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It&apos;s only a example of what&apos;s needed to create POI&apos;s and Actions. POI, and objects. However you should be pulling these from a database!&lt;/p&gt;

&lt;p&gt;I would love to know what others are doing with Layar at the moment.&lt;/p&gt;
				
				</description>
				
				
				<category>ColdFusion 9</category>
				
				<category>Chit Chat and Reviews</category>
				
				<category>ColdFusion 8</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Fri, 06 Aug 2010 17:50:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2010/8/6/Layer-Example-Added-to-RIAForge</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdBox M5 and 2.6.4 Playing Together Continued</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2010/5/2/ColdBox-M5-and-264-Playing-Together-Continued</link>
				<description>
				
				&lt;p&gt;This morning I had sometime on my hands to revisit how I had setup ColdBox M5 using refactoring. Following a comment by Jason Dean, who suggested it would be much easier to use application specific mappings with CF8+. So I decided to give it another ago.&lt;/p&gt;

&lt;p&gt;When I first tried this I got an error due to Application.cfc extending the framework. As another comment pointed out ColdBox apparently since version 2.6 comes with a no inheritance version that instead of extending the framework bootstraps it. This would allow me declare my mapping before the framework is initialised.&lt;/p&gt;

&lt;code&gt;
  &lt;cfset this.mappings[ &quot;/coldbox&quot; ] = expandPath( &quot;/coldbox&quot; ) /&gt;
&lt;/code&gt;

&lt;p&gt;This is why I love the medium I choose to express myself in and the CF community, because they are so helpful.&lt;/p&gt;
				
				</description>
				
				
				<category>ColdFusion 9</category>
				
				<category>ColdBox</category>
				
				<category>ColdFusion 8</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Sun, 02 May 2010 17:29:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2010/5/2/ColdBox-M5-and-264-Playing-Together-Continued</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>CF9 is here and another CF Builder Beta - check it out!</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2009/10/5/CF9-is-here-and-another-CF-Builder-Beta--check-it-out</link>
				<description>
				
				&lt;p&gt;Everyone is already talking/writing about it, not wanting to miss out! ColdFusion 9 is released, prices are out! ColdFusion Builder not yet ready another beta is now available, check it out. &lt;/p&gt;
				
				</description>
				
				
				<category>ColdFusion 9</category>
				
				<pubDate>Mon, 05 Oct 2009 09:43:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2009/10/5/CF9-is-here-and-another-CF-Builder-Beta--check-it-out</guid>
				
				
			</item>
			
		 	
			</channel></rss>