Tom
Member since Dec 11, 2008
- Profile: /members/849-tom.htm
- Comments: 15
Recent Blog Comments By Tom
-
My First ColdFusion 8 CFFTP Experience - Rocky But Triumphant
Posted on Sep 23, 2009 at 2:38 PM
@Terri, The most common problem people have with uploading files in CF is they fail to account for the cffile variable. This article sums it up pretty nicely: http://www.quackit.com/coldfusion/tutorial/cffile_parameters.cfm. Check your code and see if this might be the issue. The tip was the "... read more »
-
CSVToArray() ColdFusion UDF For Parsing CSV Data / Files
Posted on Aug 5, 2009 at 2:08 PM
@Ben, Sorry Ben, I didn't see your reply until BYJ just replied. I ended up using the cfparam approach and it worked (removing the isDefinedValueMX udf).... read more »
-
CSVToArray() ColdFusion UDF For Parsing CSV Data / Files
Posted on May 7, 2009 at 9:02 AM
@Ben Nadel, Yes. Based on my understanding of the way arrays work, if the array is empty it doesn't really exists (e.g. /start Array[1][1] = "Adam" Array[1][2] = "Microsoft Server 2003" Array[1][3] = [empty string] Array[1][4] = "Module 1" ... Array[1][8] = [empty string] Array[1][9] = [empty ... read more »
-
CSVToArray() ColdFusion UDF For Parsing CSV Data / Files
Posted on May 6, 2009 at 1:29 PM
@Ben, I love it when I see your site show up in Google Search results as I know I'm heading in the right direction. Dave (Apr 16, 2009 at 5:01 PM) issue is what brought me here, I believe, which utlimately displayed your CSVToArray function. To Dave, I suspect you are looping over your Array Elem... read more »
-
My First ColdFusion 8 CFFTP Experience - Rocky But Triumphant
Posted on Oct 28, 2008 at 9:12 AM
To Todd and other readers, the purpose of naming your connection is so that you actually know which connection to refer to when making calls (e.g. lets say you have multiple FTP calls happening simutaneously). If you allow CF to create/name the call, you wont know which one to refer to during multi... read more »
-
Ask Ben: Displaying A Query Vertically Instead Of Horizontally
Posted on Mar 15, 2007 at 9:50 AM
Thanks for the help, err. the code. I wasn't able to solve the problem but you sure did! I look forward to seeing your posts in the other TAGS .... read more »
-
Ask Ben: Displaying A Query Vertically Instead Of Horizontally
Posted on Mar 14, 2007 at 8:54 AM
I'm having trouble substituting a query in place of the number array you setup. I'm getting the right number of rows/columsn but as soon as I put the cfquery tag in, the output is wrong. I'm assuming I need to replace one of the cfloops with my cfoutput statements.... read more »