by Dina Hess
| Title: | Treating Queries as Structures/Array |
| Date: | 06/27/03 6 Posts |
| Summary: | What is the associative array syntax to access data in the QUERY structure? queryname['column_name'][row_number] This thread also provides two helpful URLs. |
| Title: | CFC Performance Difficulties |
| Date: | 06/27/03 Posts |
| Summary: | Need tips for writing faster CFC code? Since object instantiation is an expensive operation, it may be wise to practice "Blake Stone's 'Five Secrets': be lazy, defer object creation and initialization until you really need it." It's also best to let the DBMS handle as much of the workload as possible. |
| Title: | CFMail |
| Date: | 06/27/03 6 Posts |
| Summary: | Is it possible to point CFMAIL's mail drop to a directory other than the default? Look in the registry under HKEY_LOCAL_MACHINE | SOFTWARE | Allaire | CurrentVersion | Mail. The BaseDirectory key points to the cfusion\mail folder. If you change this, make sure your new "mail" directory has a "spool" subdirectory. |
| Title: | Overriding Request Timeout in CFAdmin |
| Date: | 06/27/03 5 Posts |
| Summary: | In CFMX, you can override the request timeout in CF Admin using <cfsetting requesttimeout="xxx">. If the application is pre-MX, you can set the request timeout in the query string. |