House of Fusion
Home of the ColdFusion Community
Hostmysite VPS Hosting
Subscribe Now
Fusion Authority Quarterly Update - ColdFusion 8 Special Edition

For ColdFusion hosting try HostMySite.com.
Search over 2,500 ColdFusion resources here  >>>      

ColdFusion DataTypes

Data TypeDescriptionCategory
NULLThis is a 0 character length string. It is included as a data type because it is returned by certain functions.Simple
StringAny collection of 0 or more characters.Simple
IntegerA number with a range of -2,147,483,648 and 2,147,483,647. For more information as to why this is different than a numeric, see this article Integers and ColdFusion.Simple
NumericAny number. If the number is a decimal, then there must be at least one numeric character before the decimal, even if its a 0.Simple
BooleanA value that can mean either true or false. True values can be any non-zero number, the word TRUE, the text 'true' and 'yes'. False values can be the number 0, the word FALSE, the text 'false' and 'no'.Formatted String
ListA formatted string of 0 or more characters containing a delimiter between items. Any string can be viewed as a list and ALL lists are strings.Formatted String
Date/TimeA string formatted to be understood by ColdFusion as a date or time value.Formatted String
QueryA ColdFusion Query data set.Complex
Array An ArrayComplex
StructureA structure of dataComplex
ObjectA 'link' to an external COM, CORBA, EJB or java class. This datatype is used to connect to the methods and properties of these objects.Object
PointerA 'virtual link' between a structure stored in one variable and a reference to it stored in another. Any change to either variable will effect the structure.Pointer