For Adobe ColdFusion application servers Microsoft Access Extension Pack

The Microsoft Access Extension Pack contains a set of datatypes that correspond to data types available within Microsoft Access. Note that you can successfully use the standard TerraForm datatypes with Access, but these may prove useful. If a field in your database uses the Access Byte data type, for example, you can simply specify acByte as the datatype within a field of your form and be sure that TerraForm will make sure that only Byte-size data gets by! All the datatypes in this Pack are prefixed with "ac" to avoid conflicting with predefined datatypes and datatypes from other packs.

To use this datatype pack, open customtags/terraform/settings.cfm and find section 5. Remove the comment tags from the following line:

<!--- <cfinclude template="datatypes/msaccess.cfm"> --->

Examples

acByte

An integer between 0 and 255.

<cf_terrafield
  name="acByte"
  datatype="acByte"
/>

acCurrency

A real number between -999999999999999.9999 and 999999999999999.9999.

<cf_terrafield
  name="acCurrency"
  datatype="acCurrency"
/>

acDateTime

A date/time value.

<cf_terrafield
  name="acDateTime"
  datatype="acDateTime"
/>

acDecimal

A real number between -10^28-1 and 10^28-1.

<cf_terrafield
  name="acDecimal"
  datatype="acDecimal"
/>

acDouble

A real number between -1.79769313486231E308 and 1.79769313486231E308.

<cf_terrafield
  name="acDouble"
  datatype="acDouble"
/>

acInteger

An integer between -32768 and 32767.

<cf_terrafield
  name="acInteger"
  datatype="acInteger"
/>

acLongInteger

An integer between -2147483648 and 2147483647.

<cf_terrafield
  name="acLongInteger"
  datatype="acLongInteger"
/>

acMemo

A long character string.

<cf_terrafield
  name="acMemo"
  datatype="acMemo"
/>

acNumber

An integer.

<cf_terrafield
  name="acNumber"
  datatype="acNumber"
/>

acSingle

A real number between -3.402823E38 and 3.402823E38.

<cf_terrafield
  name="acSingle"
  datatype="acSingle"
/>

acText

A character string up to 255 characters.

<cf_terrafield
  name="acText"
  datatype="acText"
/>

acYesNo

A boolean.

<cf_terrafield
  name="acYesNo"
  datatype="acYesNo"
/>

No comments yet