Missing column in query results CF9
I've got a very simple table in mssql 2005 consisting of these columns:
id (pk int),
app_id (int),
name (varchar50),
dir_key (varchar50),
path (varchar100),
size_limit (smallint),
ext_limit (varchar50),
virtual_dir (varchar50)
My query, run via cfquery or as a query object in script:
SELECT * FROM dbo.tblAppUploadSettings WHERE app_id = 1
Now, when that query runs, column virtual_dir is missing in the result set. It is present when running the same query via sql management studio.
If I explicitly add virtual_dir to the select list ( *,virtual_dir ) then I get the column returned twice.
I've made sure to clear query cache, etc. but to no avail.
Any thoughts?
