Here are some things you may need to know. Check out the link posted at the cfbuilder blog. http://blogs.adobe.com/cfbuilder/2010/03/things_to_watch_out_while_inst.html Share on Facebook Share on Linkedin Tweet about it Print for later Tell a friend
No Comments. Continue Reading...Recently I have come to realize that the evaluate() function in coldfusion can be slow. So the best this to do to avoid this is to evaluate it as a struct variable. For example, if you have 3 form variables with counter numbers, and you want to loop through them and pull the data from [...]
No Comments. Continue Reading...I have found that when you are trying to use a string list variable in an IN operator of a SQL query, it can sometimes be difficult. The IN operator requires a list to have single quotes around each list item, if they are strings, in order for the query to process correctly. There are [...]
No Comments. Continue Reading...When you want to get an ID field of a record that was just inserted, you have to use the code below in ColdFusion. First you "SET NOCOUNT ON" and process your insert statement. After the insert, use a select statement like the following "SELECT @@IDENTITY AS varname". After this you can "SET NOCOUNT OFF". [...]
No Comments. Continue Reading...Okay, so I don’t know how relevant this question really is, but I have been questioning something about Verity in ColdFusion. For you noobs out there, verity is a search server that comes as part of the package, you have the ability to not install the search server on setup though. Basically, verity indexes data, [...]
No Comments. Continue Reading...So it's been a while since I blogged as time is something that seems to be eluding me. But I have some time today, and want to share something that I have been researching and playing around with. Disclaimer: While I have some knowledge with these tools that I speak about, I certainly do [...]
No Comments. Continue Reading...When I was a noob (new user) to coldfusion, I racked my brain, and spent countless hours trying to figure out when to use which. So after speaking to many developers, and doing countless tests of my own, I will give you my take. Hopefully you will find this information useful, and if you are [...]
No Comments. Continue Reading...My problems with CFFLUSH and ColdFusion 8 are baffling me. I am trying to display an animated .gif file while my page is loading, but for some reason it does not show. I have installed all the updates and hotfixes for coldfusion, but to no avail, it still does not work. So.. I am forced [...]
No Comments. Continue Reading...For the longest time, I've pondered the question, which one is best to use when? I will break these down a little and give you my preference. For you people who have been programming for a long time, and have used many different types of programming languages, you may already have a preference, so please chime [...]
No Comments. Continue Reading...