Ask a Question related to Coldfusion Database Access, Design and Development.
-
cybersabah #1
Input Chinese Character
I having problem to insert chinese character from textarea input into MS Access
DB, the funny character save into DB?
I try out <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
but still the same result?
Anyone can help?
cybersabah Guest
-
Chinese character extraction:
Hi i wonder to extract Chinese character, anyone can give me some guidelines? I use AVTextCopyProcCBExtract proc to extract english word, which... -
Showing Chinese character:
I wonder to show a chinese word in AVAlertNote, is it possible? Please give me some guidelines if it can. Thanks your concern. Regards, Tham -
Chinese Character in SQL 2000
Hi, I know someone has asked similar question but the solution in this forum seems can't help me. I am now using SQL 2000 (ENG version) and... -
display chinese character
hi, i wonder why dreamweaver can't display the chinese character that i entered...boxes appeared; but correct chinese characters display in... -
Chinese Character Conversion???
Hi, I've got an english site designed that I need to translate into Chinese. I've got the Chinese wording to work with but I can't figure out... -
PaulH #2
Re: Input Chinese Character
cf ignores that meta header. you need to be using the access for unicode driver.
PaulH Guest
-
BKBK #3
Re: Input Chinese Character
PaulH's solution is ideal. However, if you don't have Admin access to the
database,
then put this code in your Application.cfm or Application.cfc:
<!---
The code in the scriptlet ensures that variables in form and url scope,
i.e. client input, remain in Unicode format, irrespective of the encoding
that the client uses.
--->
<cfscript>
SetEncoding("form","utf-8");
SetEncoding("url","utf-8");
</cfscript
BKBK Guest
-
PaulH #4
Re: Input Chinese Character
well whether or not you use access for unicode (but you *have* to if you want your data captured properly), you certainly should be using bkbk's code snippet--it's a good practice.
PaulH Guest
-
cybersabah #5
Re: Input Chinese Character
I can insert the chinese character, but having the problem to insert long text
into Ms Access memo field?
I try to insert the text like 2 paragraph still ok but more than that came out
the error message?
Message like:
Error Executing Database Query.
Application uses a value of the wrong type for the current operation.
But i try to open my Ms access and paste into the Memo field it work OK??
cybersabah Guest



Reply With Quote

