ColdFusion refuses to print the string "00"
I have a table with the column
StatusSubStr char(2)
In it are many instances of "00"
I want it to print in a table cell with another string from the table
StatusStr char(2)
which contains either 1 or 2 number characters
#FQ.StatusStr#.#FQ.StatusSubStr#
prints as an example 1.01 or 1.10
but when StatusSubStr = "00"
it prints 1 or 2
it only prints the string StatusStr
They were both integer fields in the database and I tried every kind of cast and concatenation I could find doing them both in mariadb before returning the results and in Coldfusion with the results. I finally changed the database to char(2) on both fields with alot of confidence that it would work. I filled all the StatusSubStr directly with "00" because some were null, and with lpad(statussubstr, 2, "0") so that the field has every record filled with 2 characters. And cold fusion still refuses to print the string "00".
Any help would be super appreciated. This piece should have taken me less than 1/2 hour and I've been "messing" (the good word) with it for over an hour and a half. Thank you in advance.
