Questions tagged [coldfusion-2018]

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 2016 is the current release of CF released on July 12, 2018.

Language New features in ColdFusion 2018

  • Asynchronous programming, using Futures
  • Abstract components and methods
  • Final components, methods, and variables
  • Optional semicolons
  • NULL support
  • Numeric member functions

Administrative New features in ColdFusion 2018:

  • Performance Monitoring Toolset
  • REST playground capability
  • Modernized Admin UI
  • Distributed cache support (Redis, memcached, JCS)

See: https://helpx.adobe.com/coldfusion/using/whats-new.html#WhatsnewandchangedinColdFusion2018release

124 questions
0
votes
0 answers

Double quote not working in cfquery after upgrading from ColdFusion 9 to 2018

In ColdFusion 9, the following cfquery worked: SELECT someField FROM someTable WHERE IPADDRESS = "#CGI.REMOTE_ADDR#" After upgrading to ColdFusion 2018, the query no longer works. However, it does work if I…
spackman
  • 1
  • 1
0
votes
1 answer

UTF-8 value of a character in ColdFusion?

In ColdFusion I can determine the ASCII value of character by using asc() How do I determine the UTF-8 value of a character?
James A Mohler
  • 11,060
  • 15
  • 46
  • 72
0
votes
1 answer

Passing data to a member functions that use a function

I have a cfc that is a service. It only has functions. Up until now did not have any member variables. login.cfc function post(required string email, required string password) { ... variables.password = arguments.password; // wish I didn't…
James A Mohler
  • 11,060
  • 15
  • 46
  • 72
-1
votes
2 answers

How to use ColdFusion to check database's value?

Now, I'm using ColdFusion to add user: insert into register values('#username#','#password#') If user add same username, the web page will tell the user that the name has…
iTvX
  • 1
  • 1
1 2 3
8
9