Posted in ColdFusion | Posted on 01-06-2006 | 3,113 views
So, I warned you - and now it's here. I'm happy to announce the (Beta) launch of the ColdFusion Cookbook. The site is mostly feature complete. We even have content! Thanks to Rob Brooks-Bilson and Jeremy Petersen. They have graciously donated content and given the site a great start.
Some points:
- The comments engine isn't ready. It's almost ready. I should have that up in a day or two.
- The PDF is ugly. Butt Ugly. Please help me. Any comments (or even code) would be greatly appreciated. Also - it is generated on demand. I already have a plan in mind on how to correct that. (And I'll blog it, since I think it is a good idea.)
- Any other comments would be welcome as well.


Unless we have O'Reilly complications, should have a bunch more content to post over these next couple of weeks.
That was quick! Could we maybe add a "Database / SQL" category? I've got some content I'd like to add, and there's no place for it :(
Cheers,
Joe
Example:
Data Structures (7)
Database/Sql (10)
Nice Fu__ing Work!
Thanks for the CF Cookbook - great idea! I'm using it already, which is how I found an error with the "How do I mail the contents of a form?" recipe - wrap="80" should be wraptext="80".
Keep up the good work!
SELECT A.*, (SELECT COUNT(AID) FROM A_B WHERE A_B = A) AS ABCOUNT<br>
FROM A;
If you're using a DAO/Bean implementation, I've shifted some things, like counting articles in a category, to being a property of the Category bean that's maintained through persistence and business logic, so that I don't have to do the (not very, admittedly) costly nested SELECT statement.
Basically that's a lot of words to say that I sometime just put an ArticleCount columng in the Category table, and maintain that property as necessary (possibly directly in ArticleDAO, or by having ArticleDAO use a CategoryDAO to get the category, change it, and commit it...whatever's necessary).
Brian - thanks for answering ray's question.
[Add Comment] [Subscribe to Comments]