Unicode Data and Database

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

  1. #1

    Default Unicode Data and Database

    Dear Friends,

    I have a database which contains records in Unicode format. I access my this
    database (which is MS Access database) in ASP by using following method:
    <%=Server.HTMLEncode(oRs.Fields("field name").Value)%>
    This works fine but when I use CFML It just shows ???? (question marks). Let
    me know what should I do?

    Regards,

    Amanat

    Yadish Guest

  2. Similar Questions and Discussions

    1. DBI/DBD::Ingres and unicode data types
      DBI version 1.5 DBD::Ingres version 0.51 Using Ingres r3 on linux I have a table that has a column with a nvarchar data type. The following...
    2. Access database with Unicode support
      I'm trying to verify Access 2000 databases on a CF MX 6.1 Windows installation. I can verify the databases normally, but when I turn on Unicode...
    3. Unicode Problem in MySQL database
      I am using an MySQL database with utf-8 character set. When I check the data through phpMyAdmin, the data looks fine (I am using hebrew chars). but...
    4. Is there a way to work with Unicode database (IBM DB27.2) using ODBC socket data source?
      Is there a way to work with Unicode database (IBM DB2 7.2) using ODBC socket data source? Standard ODBC services shipped with ColdFusion MX 7.0...
    5. cf structure and unicode data
      Hello, Has anyone tried storing unicode characters in a cf structure? I have a structure in which I'm trying to store Japanese unicode...
  3. #2

    Default Unicode Data and Database

    Dear Friends,

    I have a database which contains records in Unicode format. I access my this
    database (which is MS Access database) in ASP by using following method:
    <%=Server.HTMLEncode(oRs.Fields("field name").Value)%>
    This works fine but when I use CFML It just shows ???? (question marks). Let
    me know what should I do?

    Regards,

    Amanat

    Yadish Guest

  4. #3

    Default Re: Unicode Data and Database

    tried the access for unicode driver?
    PaulH Guest

  5. #4

    Default Re: Unicode Data and Database

    See [url]http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=6&threadid=103990[/url]
    mxstu Guest

  6. #5

    Default Re: Unicode Data and Database

    How I can use it? I mean what is unicode driver for Access?

    Regards,

    Yadish Guest

  7. #6

    Default Re: Unicode Data and Database

    it is what it says, a unicode capable driver for access. assuming you're using
    cf 6 and above: if you control your server, change the driver for that DSN to
    "access for unicode" (it's listed in the drivers) via cfadmin. if not, tell who
    ever does to do that for you.

    to short circuit the inevitable follow-up: what program did you use to enter
    the data? what encoding did you use to enter the data? what encoding are you
    using in your cf application?

    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