Misha
Member since Dec 11, 2008
- Profile: /members/1770-misha.htm
- URL: http://cfdump.com
- Comments: 8
Recent Blog Comments By Misha
-
Geocoding IP Addresses For Free Using IPInfoDB And ColdFusion
Posted on Sep 30, 2010 at 8:58 AM
THANK YOU Ben, really nice service, hopefully it stay free.... read more »
-
ColdFusion 9's NEW Operator Can Use Dynamic Class Paths
Posted on Jul 6, 2010 at 4:01 PM
Hi Ben, what is benefits using NEW instead of createObject?... read more »
-
Learning ColdFusion 9: The Virtual File System (RAM Disk)
Posted on Jul 19, 2009 at 9:04 PM
Ben, how long data can be stored in memory? and how it can impact on performance, I mean by putting a big amount of data it can potentially impact on server performance, is there any "garbage removal" process available or it should be handled manually?... read more »
-
Hal Helms Real-World Object Oriented Programming (OOP) February Training And Discount Code
Posted on Jan 6, 2009 at 12:36 PM
Thanks for your reply. Yes, DB do not support inheritance, polymorphism, encapsulation etc what OOP does. BUT DB not just can store data, it also can store/retrieve the data based on some logic. You can also build an object in DB and use that as business logic it can be functions, store procedur... read more »
-
Hal Helms Real-World Object Oriented Programming (OOP) February Training And Discount Code
Posted on Jan 6, 2009 at 8:16 AM
Hatem Jaber: Could you please explaine why it wrong to start from DB?... read more »
-
Converting A ColdFusion Query To CSV Using QueryToCSV()
Posted on May 22, 2008 at 11:09 AM
Eric. From that point regardless what method you use to create CSV you should care about.... read more »
-
Converting A ColdFusion Query To CSV Using QueryToCSV()
Posted on May 22, 2008 at 9:30 AM
Devid. yes, but you always can convert all data into the string like: convert(nvarchar(50),qty) and put some NULL validation as well like: convert(nvarchar(50),ISNULL(SUM(QtyOrdered),0)) ISNULL(data1,'')... read more »
-
Converting A ColdFusion Query To CSV Using QueryToCSV()
Posted on May 22, 2008 at 9:04 AM
Hi guys, thanks for share experience, I would share the way I do CSV. Im using SQL query to create CSV line like: SELECT ( '"' + Data1 + '",' + '"' + Data2 + '",' + '"' + Data3 + '",' + '"' + Data4 + '"' ) as Line FROM ...... and then just put result into the file: <cfset filecontent = Val... read more »