Problem inserting arabic caracters in SQL server table

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

  1. #1

    Default Problem inserting arabic caracters in SQL server table

    I have a problem when trying to insert arabic characters in SQL Server data
    base from a Coldfusion MX 7 cfml page. All arabic sent characters to database
    become question marks "????????????".

    Is there any problem in supporting arabic characters in Coldfusion MX 7 ? or
    is there any settings to change from the ColdFusion administrator?
    I need your help.
    Thank you any advanceText

    kingofcar Guest

  2. Similar Questions and Discussions

    1. Saving arabic data back into an Access table
      I am trying to save arabic text from Flash 8 to an Access table through ASP. Please help me fix this issue. I am using the following code in...
    2. Simple Problem - Inserting current date into table
      Hello Im trying to create a form in which when someone registers, it also adds the current date into a specified field from a hiddenfield...
    3. Problem inserting a autonumber value from a recordset to another table as text
      The problem I'm having is I'm trying to insert a number value (UserID) obtained from the first SQL1 query from a table called User. In the Access...
    4. how to embed arabic fonts in director so that arabic texts will be shown
      how to embed arabic fonts in director so that arabic texts will be shown normally in their format not in symbols
    5. Inserting data into a table
      I am quite new to all this but am trying to create a database driven site. I have been able to use information from my sample database but I now...
  3. #2

    Default Re: Problem inserting arabic caracters in SQL server table

    kingofcar wrote:
    > Is there any problem in supporting arabic characters in Coldfusion MX 7 ? or
    > is there any settings to change from the ColdFusion administrator?
    no, no problem. what db driver? JDBC or odbc? should be JDBC. what datatype?
    should be ntext/nvarchar/nchar. to make it easy on yourself use unicode rather
    than a codepage. see this for a simple example:

    [url]http://www.sustainablegis.com/unicode/greekTest.cfm[/url]
    PaulH *TMM* Guest

  4. #3

    Default Re: Problem inserting arabic caracters in SQL server table

    write the character 'N' before the arabic data
    ex:-
    insert into tablename values(' Nالبيانات ',' N البيانات ');
    Unregistered 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