Jusuf Darmawan
Member since Dec 11, 2008
- Profile: /members/400-jusuf-darmawan.htm
- Comments: 9
Recent Blog Comments By Jusuf Darmawan
-
Clean Code: A Handbook Of Agile Software Craftsmanship By Robert C. Martin
Posted on Jun 28, 2012 at 11:57 AM
Ben, for some reason the Facebook Like is not functioning. Thanks for the review.... read more »
-
Hostek.com Offering Free ColdFusion 10 Beta Hosting
Posted on Feb 24, 2012 at 5:02 PM
Thanks Ben.... read more »
-
Styling The ColdFusion 8 WriteToBrowser CFImage Output
Posted on Apr 14, 2010 at 5:16 PM
Thank you Ben for making of this module as alternative of <cfimage action="writeToBrowser">... read more »
-
ColdFusion 8 ImageDrawTextArea() (Inspired By Barney Boisvert!)
Posted on Feb 2, 2010 at 11:47 AM
Hi Ben, FYI: The link of this text "ColdFusion 8 Online Demo: Try ImageDrawTextArea() out for yourself." go to different web site and my antispyware block it out.... read more »
-
ColdFusion CFQuery MaxRows Not A Bad Compromise When TOP Not Available
Posted on Jan 21, 2010 at 2:06 PM
@Ben Nadel, So sorry I think I got mess up here. Just forgot/delete my previous comments. What I find out is when I used the SELECT TOP n only getting the record result from 1-n however the maxrows it's selecting n records from the result. This will make different for example you want to sort the or... read more »
-
ColdFusion CFQuery MaxRows Not A Bad Compromise When TOP Not Available
Posted on Jan 20, 2010 at 10:59 PM
Let's say you query 1M rows with maxrows=10. When you dump the recordresult it will return 1M however if you have the SQL Statement using subquery IN for some reasons it returns 10 instead of 1M. One of the most interesting with Maxrows is you can loop from 1-1M using startrow (1,11,21,..) and endr... read more »
-
ColdFusion CFQuery MaxRows Not A Bad Compromise When TOP Not Available
Posted on Jan 20, 2010 at 9:21 PM
Beware using the maxrows with the SQL Statement WHERE IN () Because it will give the query rows result as many as you define it in the maxrows. Instead of million records you expected, it will return only X records. This problem might come from the Coldfusion SQL Server driver.... read more »