GetMetadata()

Returns back meta information depending on the object passed in

GetMetadata( object=any, source=boolean );

Returns: any

Argument Description
object
any, optional

A component, user-defined function, query object, XML, etc.

Within a CFC, the parameter can also specify the This scope

Alias: value

source
boolean, optional

return information of the source of the object

Examples

q = queryNew("id,name","numeric,varchar");
dump(GetMetadata(q));

See also