Java CF
Member since Dec 11, 2008
- Profile: /members/854-java-cf.htm
- URL: http://www.hpreloaded.com
- Comments: 6
Recent Blog Comments By Java CF
-
Ask Ben: Screen Scraping PowerBall Statistics With ColdFusion
Posted on Nov 2, 2011 at 9:51 PM
Ben, cfhttp delay Have you seen anyone use a delay after onload event so the returning scrape includes an updated page? Is this something worth adding to the next CF? thanks Dan... read more »
-
Reading A Microsoft Excel File In ColdFusion Using JExcel API
Posted on Feb 22, 2007 at 2:32 PM
All Classloaders work exactly the same. They all come from one root URLClassloader so it does not matter who's class it is. I showed you and other people on CF Talk working examples but somehow the examples did not take. ColdFusion has a specialized object for URLClassloading and it can be used jus... read more »
-
Reading A Microsoft Excel File In ColdFusion Using JExcel API
Posted on Feb 21, 2007 at 3:12 PM
Coldfusion uses a ClassLoader when it starts up and that is how CF loads up java so why are you using a CFC to do the job? Why not just use the same Classloader already installed and in use?... read more »
-
Using ColdFusion Query's Underlying Java Methods For Query Manipulation And Logic
Posted on Dec 7, 2006 at 5:28 PM
Thanks for using my removeRows() and not deleteRows()... read more »
-
Using ColdFusion Query's Underlying Java Methods For Query Manipulation And Logic
Posted on Nov 5, 2006 at 1:33 AM
I found a one line way to not only remove a row from a cfquery object but also the right row just like a SQL DELETE statement with the where clause. I think that was the missing link. I was just about to give up when I found your post but it took me all day to find out the method does not exist.... read more »
-
Using ColdFusion Query's Underlying Java Methods For Query Manipulation And Logic
Posted on Nov 4, 2006 at 8:58 PM
I looked for DeleteRows() inside 6 & 7 and I think it was replaced by removeRows() ! CFQUERY Java Docs http://www.geocities.com/empiricallyspeaking/JavaDocs_CFQUERY.html Strangly DeleteRows() does work but only when WddxSerializer.id EQ 500 If I change that 500 which something else is breaks. ... read more »