The multi-part identifier "variable" could not be bound.
Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]The multi-part identifier "my.variable.name" could not be bound. This error means that you did not surround your...
View ArticleChromium OS on Asus Eee pc 1005hab Netbook
How to install Chromium OS on Asus eee pc 1005hab Netbook. (You can skip the intro, instructions below!) First question is what's this got to do with ColdFusion? Answer - nothing, it's just something...
View ArticleCKEditor Inline Editing on Coldfusion using AJAX and JQuery
Implementing CKEditor Inline Editing on Coldfusion using AJAX and JQuery Everyone says it's easy to get CKEditor running on ColdFusion, but there are no working examples available. Here is a tutorial...
View ArticleRegEx for Numbers and Dollar Signs and Periods or Commas
Need some regular expressions for numbers with dollar signs and commas or periods? I came across a scenario where we needed to filter field values which could possibly include text and all other...
View ArticleDAO missing WHERE clause
Illudium PU-36 Code Generator - generated code based on database tables. DAO has a blank WHERE statement or clause. This is due to not having a primary key in the table. Once the primary key is set in...
View ArticleWhere Does CF Debug Information Come from Mommy? Or How to use the ColdFusion...
Have you ever wondered where ColdFusion gets the information presented when debugging is turned on in the CF Admin? It comes from the ColdFusion Server's Service Factory. Of the many things that this...
View ArticleColdFusion Custom Debugging Template
Build your own ColdFusion Custom Debugging Template You can create your own ColdFusion custom debugging template. Build it and drop it into your CF web root WEB-INF/debug folder. In my case on Windows...
View ArticleCustom Logging Template for SQL queries and Stored Procedures
We'll combine the last two blog posts, Where Does CF Debug Information Come from Mommy? Or How to use the ColdFusion Service Factory and ColdFusion Custom Debugging Template. The task is to create a...
View ArticleTrouble with cfloop lists and arrays with cfqueryparam
I was looping an array and and using each item in a cfqueryparam. Running a query in each loop. Each iteration was displaying a null query result, which was incorrect. The same problem occurred with a...
View ArticleFind Duplicates in MSSQL
Find duplicate entries in MS SQL table columns. Need to see if you have 2 or more duplicate entries in your table? Want to find out if the key is really unique and there are not multiples? Simple!...
View ArticleMSSQL Remove duplicate records
MSSQL Remove duplicate records from a table leaving a single unique record. The situation arose where we had multiple records for items where there should be only a single record. We have JobIDs which...
View ArticleBlock Special Characters from a Text Box Form Input
We want to keep users from entering special characters into our textbox input on or form. Ideally we want to not allow those characters to be entered at all, as opposed to let them enter the...
View ArticleUbuntu Mounting HTC One M8 SD Card
error: exited with non-zero exit status 32: mount: unknown filesystem type 'exfat' I added a 64 Gigabyte SDcard to my HTC One M8 phone and could not connect to add music or files. The issue is that...
View ArticleCFM Pages Not Working After Server IP Change
BlueOnyx JSP and Servlets, including ColdFusion, CFM, CFML, Railo templates do not run after changing the IP address of the site and server. CFM displays as text. Datacenter adjustments forced a...
View ArticleColdFusion CLIENT cookie issue
MSSQL error: The data types text and varchar are incompatible in the equal to operator. In the ColdFusion administrator under there is the option to save CLIENT variables as cookies, in the registry,...
View ArticleTrim characters off of right on a string
Trim characters off of right on a string. Trim off a certain number of characters on the right side of a string. Here's a quick easy method to cut off an exact number off the right portion without...
View ArticleGoogle Custom Search Results
Want to find out what Google has on your web site? Do you wish to tabulate a list of all the pages Google has searched and indexed? Here's how to document it! Caveat: you must have a google business...
View Articleconvert UTC date in Unix timestamp format
Converting a date in ColdFusion into a UNIX timestamp format is not straight forward if you don't know what the UNIX timestamp format is. Unix time is defined as the number of seconds that have...
View ArticleCTE with Recursion Example
Common Table Expressions with Recursion using WITH. A Common Table Expression is a temporary result set upon which we can work against. It's kind of like a sub query in memory that we can manipulate....
View Articlenot equal to null not working
In MSSQL, looking for rows that are not equal to a certain value does not return rows with null values. To retrieve all values that are not equal and are null, you have to add both clauses "not equal"...
View Article