MySQL & russian characters

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default MySQL & russian characters

    Hi,

    For MsSQL N'xxx' and nvarchar is OK.
    What I can do for MySQL

    Thanks,
    Victor


    VicTci Guest

  2. Similar Questions and Discussions

    1. Flash+XML+PHP+MySQL - HOW TO PASS RUSSIAN WORDS
      What I have : Apache2 HTTP server PHP 4.3.58 MySQL Server What I do : I've wrote a script on PHP that takes some text from MySQL database and...
    2. Russian and SQL Server or MySQL
      Hi, Have a problem inserting and extracting russian characters into SQL Server,MySQL database Used CFMX 6. Thanks, Victor
    3. Escaping characters in MySQL
      CFMX works fine with MySQL database 99% of the time. However, when a field in a query includes an apostrophe, CF is escaping it in the Windows SQL...
    4. MySQL characters
      As long as Im on the subject... Is there any way I can use characters such as: á,é,í,ó,ú,º,ª, etc in MySQL??? thanks
    5. cut text in russian characters from word and paste in DW doc not working ??
      I am using Dreamweaver for a university project. I am using it in combination with Microsoft word 2000. I have a PC with Windows XP. I have a...
  3. #2

    Default Re: MySQL & russian characters

    for sql server, cfqueryparam is
    [url]http://www.sustainablegis.com/blog/cfg11n/index.cfm?mode=entry&entry=F9553D86-20[/url]
    ED-7DEE-2A913AFD8651643F.

    for mysql you'll need a version that supports unicode (if you want to use
    unicode, which i recommend) and need to set the databe/table/whatever encoding
    to unicode. in the DSN for that mysql, under the advanced menu, connection
    string option add: "using useUnicode=true&characterEncoding=utf8" if you don't
    want to use unicode, substitute your encoding for utf8.


    PaulH Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139