Browsing all articles tagged with Coldfusion
Jan
19

Instant Method Finder : My first Coldfusion Builder extension!

I was in the process of evaluating CFbuilder to make it more effective among the team. what I was looking for was tips and tricks , Faster coding with shortcuts and snippets, make complete use of RDS and make use of Service Browser.

Then I got stuck with the same old problem all most all CF developers face “Finding the right function”. It is easy in technologies like .net with a ful fledged IDE to find methods or variables through out the project. But somewhere we had to wait centuries for Adobe to come up with CFB. Now we can look for the methods and variables in the page or instantiated component by doing a CTRL + SPACE. But that was’nt enough for me !. most of the time , I even dont know where I could find the right method. I have to scan through the service browser to find the function.
Continue reading “Instant Method Finder : My first Coldfusion Builder extension!” »

Jan
7

Create coldfusion builder snippets from cflib repository

CF Builder Snippets is one among those cool features which comes handy when doing fast development on ColdFusion. But most of time I found it hard to create all those snippets which I could use later in my development, because they are so scattered around or so hard to find apart from one “Cflib.org”. Thanks to Raymen for creating such a cool repository for those community shared functions and custom tags.
Continue reading “Create coldfusion builder snippets from cflib repository” »

Feb
17

Tip : Getting unsorted query columns in coldfusion

Author nerdscubecom    Category Coldfusion     Tags , , , , ,

This one gave me a headache for 15 min, making all the possible tricks to make my query return the unsorted columns.

Generally Coldfusion always sort the columns in the query that has been returned, irrespective of the order you have specified in the SQL statement. Most of the time its a blessing, but not always.

There is no documented way to get the unsorted columns otherthan using some thirdparty customtags and function. But there is a tweak for this case.

Tweak #1
Use getMetaData() function to get the column list which is as per the sql statement which you have written.

<!--- use GetMetadata to get the names and data types of the fields in the
            cfdocexamples Employees table --->
<cfquery name="getemployees" datasource="cfdocexamples">
SELECT *
FROM Employees
</cfquery>
<cfset employeemeta=getMetaData(getemployees)>
 
<h4>The Employees table has the following columns</h4>
<cfloop index="i" from="1" to="#arrayLen(employeemeta)#">
    <cfoutput>
        #employeemeta[i].name#
    </cfoutput>
</cfloop>

Tweak#2
Use queryObj.getColumnNames() function to get the unsorted list of column from the query. this function is not documented in CF docs. Thanks to Richard

<cfset queryColumnlist = ArrayToList( qryObj.getColumnNames() )>
Jan
30

Tip : Using cfdump inside CFscript

Author nerdscubecom    Category Coldfusion     Tags , , ,

One simple tip for the day, How to use cfdump inside the cfscript block !!!

cfscript block does not support cfdump tag or indeed any tag inside it. So the trick is to create function which dumps the value using cfdump and call the function inside cfscript by passing the variable as parameter.
Continue reading “Tip : Using cfdump inside CFscript” »

Jan
25

Coldfusion 9 : Feature improvement history

Check out the new Coldfusion 9 feature comparison with its predecessors which includes CF8 and MX7. PDF download at the bottom of content.
Continue reading “Coldfusion 9 : Feature improvement history” »

Dec
24

Tip : Saving cfdump to file in coldfusion 8

Author nerdscubecom    Category Coldfusion     Tags , ,

coldfusion 8

coldfusion cfdump is the most favorite tag for almost all CF developers. but there are cases where using a cfdump will not make life much easier.

when creating a web service, dumping the sessions and application variable will be a problem. this is the same case when creating components which does not have an interface. Any method you have to debug with a cfdump should have to make a code walk-through.
Continue reading “Tip : Saving cfdump to file in coldfusion 8” »

Take it with you!

Twitter

Recent Posts

Categories

Tags

Adventure Android augmented Augumented avatar cf8 CF9 cfdump cfquery Coldfusion Coldfusion programming technology features new compare comparison debugging Definitions design Digitization dynamic element creation form future getmetadata HTML Inspirations Iphone Javascript Jquery movie Movies mustwatch mx7 new feature programming project Project Management Reality realtime si-fi Technology tip top tricks validation virtual world web development

Archives

RSS CF Libs

  • arrayTrim January 31, 2012
    This method trims an array to the specified number of elements. […]
  • longTime January 25, 2012
    Returns a list like 3 years, 2 months, 12 days, 1 hour, 10 minutes, 45 seconds from a seconds count argument. […]
  • quickSort January 15, 2012
    Implementation of Hoare's Quicksort algorithm for sorting arrays of arbitrary items. […]
  • GetHostAddress January 12, 2012
    Performs a DNS lookup. […]
  • GetFileFilterCount January 4, 2012
    Accepts a directory path & a file filter. Returns number of matching files. […]
  • replaceSpecialChars January 4, 2012
    Replaces all special characters in a string of text. […]
  • solrClean December 30, 2011
    Like VerityClean, massages text input to make it Solr compatible. […]
  • rjustify2 December 21, 2011
    Same as built-in RJUSTIFY, but allows optional parameter character to pad with. […]
  • RowColor December 21, 2011
    Returns alternating color based on list of colors. […]
Get Adobe Flash playerPlugin by wpburn.com wordpress themes