104
Developing Web Applications with ColdFusion
About Arrays
Traditionally, an array is a tabular structure used to hold data, much like a spreadsheet
table with clearly defined limits and dimensions. A 2-dimensional (2D) array is like a
simple table. In ColdFusion, you typically use arrays to temporarily store data. For
example, if your site allows users to order goods online, their shopping cart contents
can be stored in an array. This allows you to make changes easily without committing
the information, which the user may change before completing the transaction, to a
database.
Conventional fixed-size 2D array
A 3-dimensional array is like a cube made up of individual cells.
ColdFusion arrays differ somewhat from traditional arrays because they are dynamic.
For example, in a conventional array, array size is constant and symmetrical, whereas
in a ColdFusion 2D array you can have ’columns’ of differing lengths based on the data
that has been added or removed.
Summary of Contents for COLDFUSION 4.5-DEVELOPING WEB
Page 1: ...Allaire Corporation Developing Web Applications with ColdFusion ColdFusion 4 5...
Page 14: ...xiv Developing Web Applications with ColdFusion...
Page 26: ...xxvi Developing Web Applications with ColdFusion...
Page 34: ...8 Developing Web Applications with ColdFusion...
Page 70: ...44 Developing Web Applications with ColdFusion...
Page 84: ...58 Developing Web Applications with ColdFusion...
Page 114: ...88 Developing Web Applications with ColdFusion...
Page 148: ...122 Developing Web Applications with ColdFusion...
Page 174: ...148 Developing Web Applications with ColdFusion...
Page 208: ...182 Developing Web Applications with ColdFusion...
Page 244: ...218 Developing Web Applications with ColdFusion...
Page 274: ...248 Developing Web Applications with ColdFusion...
Page 288: ...262 Developing Web Applications with ColdFusion...
Page 300: ...274 Developing Web Applications with ColdFusion...
Page 350: ...324 Developing Web Applications with ColdFusion...
Page 362: ...336 Developing Web Applications with ColdFusion...