2 e.title,
3 c.id,
4 c.entryidfk,
5 c.name,
6 c.comment,
7 date_add(c.posted, interval -1 hour) as posted
8 from tblblogcomments c
9 inner join tblblogentries e on c.entryidfk = e.id
10 where blog = 'Default'
11 order by c.posted desc
12 limit 5
Unfortunately nothing really here makes sense to me. This seems to only be an issue with a BlogCFC install with a lot of data as I don't see it on my test version. If folks are bored and want to recreate this locally, just download BlogCFC and fill it with some random data. (I'd be willing to give folks an export, but I'd need to prune out the email addresses from my commenters.)
If worse comes to worse, I'm going to mod my own copy to get just the comment data and follow it up with a loop to get the entry data.

A reader asked me this morning about plugins/extensions/etc for doing ColdFusion development in Microsoft's Visual Studio. He was able to find Flex support (Amethyst and Tofino) and is hoping something may exist for ColdFusion. Anyone have a suggestion?


