Scopes Are Structures
In ColdFusion 5 some scopes, but not all, were accessible as structures. In ColdFusion MX all scopes are now structures, including CALLER, and VARIABLES. (Applies to: ColdFusion MX)
In ColdFusion 5 some scopes, but not all, were accessible as structures. In ColdFusion MX all scopes are now structures, including CALLER, and VARIABLES. (Applies to: ColdFusion MX)
In ColdFusion MX the form field names listed in FORM.fieldnames are in their original case, and not converted to uppercase as they were previously. As CFML is case-insensitive this should have no impact on your code, but if you are processing that variable with List functions be sure to use the...
ColdFusion MX uses JDBC drivers (instead of ODBC or native database drivers). As such, all DBTYPE values aside from "query" have been deprecated, as have the DBSERVER, DBNAME, PROVIDER and PROVIDERDSN attributes. (Applies to: ColdFusion MX)
When ColdFusion 5 first introduced the ability to query queries it allowed reserved SQL words to be used as column names. This is no longer allowed in ColdFusion MX. If your original query returns invalid column names assign them aliases using AS and refer to the aliases when querying the query....
The default cache size for generated charts is 50 (the 50 most recent charts, after which the oldest is dropped from the cache). If you generate lots of charts (and are caching to disk) you may want to increase the cache size to prevent unnecessary chart regeneration. (Applies to: ColdFusion MX)
charts can be cached for improved performance (if the same chart if requested it can be served from the cache instead of being regenerated). The default cache is disk based, but for greater performance the cache can be stored in memory (this option is set in the ColdFusion Administrator). Only move...
The ColdFusion MX charting engine is multi-threaded allowing it to generate multiple charts concurrently if needed. If you only use sporadically you can set the thread count (in the ColdFusion Administrator) down to 1 to reduce memory load. (Applies to: ColdFusion MX)
Need to upgrade ColdFusion MX from a trial or developer edition to a full license? You do not have to reinstall or even restart the software. Instead, go to the Version Information page in the ColdFusion Administrator and you'll be able to enter license information (a serial number) which can be...
Need to know where ColdFusion is installed? Check the SERVER.ColdFusion.Rootdir variable which will contain the path to the ColdFusion root directory. (Applies to: ColdFusion MX)
ColdFusion MX runs on top of a J2EE server, and to find out exactly which one is being used check the SERVER.ColdFusion.AppServer variable (if using standalone ColdFusion the value will be JRun4). (Applies to: ColdFusion MX)