Eric00000007
Member since Dec 11, 2008
- Profile: /members/2272-eric00000007.htm
- URL: http://eric00000007.free.fr
- Comments: 5
Recent Blog Comments By Eric00000007
-
ColdFusion ZipUtility Component Can Now Write Directly To An Output Stream
Posted on Aug 13, 2008 at 5:36 AM
I used this CFC since I have to zip some UTF-8 content. It doesn't work with UTF-8 content. With chines or arabic characters you will have wrong results. I started to go into the java classes to correct that but I remember the new CFZIP tag with CF8. I used the CF8 CFZIP tag with success. I hope th... read more »
-
Ask Ben: Delete Values In A Given List Using ColdFusion
Posted on Jul 29, 2008 at 9:57 AM
I tried something with some regexp <cfscript> list1= "1,2,2,3,2,4,5,5,455,1122,231,5,2"; list2= "2,3,3,1"; replacementlist2= list2.ReplaceAll(",","|"); result=list1.ReplaceAll('(,?\b(#replacementlist2#),?\b)*',''); </cfscript> <cfdump var="#result#">... read more »
-
Turning On Multiple Statements In ColdFusion 8 MySQL 4/5 Datasource
Posted on Jul 1, 2008 at 6:03 AM
By the way like other said, you must be 100% sure your CF web application is secure to turn on this kind of settings. I could imagine how destructive multiple queries could be.... read more »
-
Turning On Multiple Statements In ColdFusion 8 MySQL 4/5 Datasource
Posted on Jul 1, 2008 at 6:01 AM
More string parameter can be found in the MySQL Jconnector documentation. http://dev.mysql.com/doc/refman/5.1/en/connector-j-reference-configuration-properties.html I am not sure this is the good place for this question but it could be related to the jconnector. I have a new trouble now with the ... read more »