BlogCFC 5.9.4.001
I just pushed up a minor update to 5.9.4. Release notes are below.
/org/camden/blog/blog.cfc - Fix to rss code to not output image stuff if the itunesimage value not specified
/org/camden/blog/blog.cfc - case sensitivity issue for mysql fixed
/client/stats.cfm - Added numerFormat around most stats. Makes the #s a bit nicer.
/client/admin/settings.cfm - Support setting Use cfFormProtect (thanks Todd Sharp!)
Upcoming changes:
My next update will be to add metadata keyword/description support for the blog entry/blog category level. The flow will be: If keyword/desc defined for entry, use it. Else check category. Finally use the default settings.

This blog post from Aaron West helped make it really easy for me:
http://www.trajiklyhip.com/blog/index.cfm/2009/6/2...
Yeah, you probably mention this in your docs, but who reads the docs?
Thanks Ray, we <3 blogcfc
Am I wrong?
CF query of query doesn't like clob fields. Oracle's to_char returns a varchar2, which supports a max 4000 bytes. Older versions would automatically truncate, but newer versions will throw an error when the content is greater than 4000. I've found only the following to work correctly...
<code>
<cfif instance.blogDBTYPE is NOT "ORACLE">tblblogcomments.comment<cfelse>to_char(dbms_lob.substr(tblblogcomments.comments,4000,1)) as comments</cfif>
</code>