I want to make a ColdFusion(10) project to be global. It should support more languages,such as Japanese,Chinese,Spanish,etc. I searched on the Internet and found that it can be done easily by adding one line:
<cfprocessingDirective pageencoding="utf-8">
But it is supposed to add it in every cfc or cfms. I tried to add it in Application.cfc, but failed to display expected contents. So what can I do to support multiple languages?(utf-8)
Also, I need to think about the database part. I designed the db with strings as "nvarchar". So when I insert/set new values, I must add a 'N' before the values. Since it is an existing project, and there are thousands of written insert/set blocks. How can I add the 'N' in every existing statement efficiently?
update table
set name = N 'name'
I really appreciate it if you say anything help.