I've had a quick look and can not find anything
inherant to Coldfusion other than the column
list.
There are two options I can see.
Firstly access the info through an sp and
return a delimited list.
OR - Even Worse
Use ASP with ADO
IF you go for the second option this may help
DIM cnConn
DIM rsRec
DIM strQry
strQry = "Select * FROM my_table"
SET cnConn = Server.CreateObject("adodb.connection"

cnConn.Open dsn
SET rsRec = cnConn.Execute(strQry)
Dim item
FOR EACH item IN rsRec.Fields
Response.Write("<br>"&item.Name)
Response.Write("<br>"&item.Value)
Response.Write("<br>"&item.ActualSize)
Response.Write("<br>"&item.DefinedSize)
Response.Write("<br>"&item.NumericScale)
Response.Write("<br>"&item.Precision)
Response.Write("<br>"&item.Type)
Response.Write("<br>etc<br><br>"

NEXT
SET rsRec = NOTHING
rsRec.Close
SET cnConn = NOTHING
cnConn.Close