Text Missing from cfquery

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

  1. #1

    Default Text Missing from cfquery

    I have a query which return like 150 records, one of the field contain more
    than 200 characters. When i try to display it, it only show up part of the text
    from all the records. I did look at the data inside database, everything look
    alright in there. Can someone help me please.

    I am using
    Access 2000,
    CF4.5,
    ODBC setup is allow long text and maximum text is 165000

    Jeremy Tan Guest

  2. Similar Questions and Discussions

    1. Missing text
      Hi all - bear with me on this - fairly new to Flash Why, when exporting my flah movie, the text is missing on both Mac and Linux machines? ...
    2. <cfquery> bug/missing function
      Hi All, In the docs there are a few references to SQLParameters being a member of the new results structure. The docs say the use is something...
    3. Missing text in 3.0.1
      I'm transitioning from PM to InDesign and have run into a problem with missing text. I'm doing a book of about 60 pages and after I started adding...
    4. Missing text sections in layout printed to plain text
      Hi - I am printing out one long text inserted (pasted) in a textbox in one body section which spans multiple pages. Within this text (source...
    5. Missing text (flush right text block) upon export to pdf
      I was aghast today to see and ad in the local paper (that I worked on and got client approval for) missing text at bottom of ad. I am using FH 10 in...
  3. #2

    Default Re: Text Missing from cfquery

    I found out that the cause is because of the group by and distinct in SQL. It
    appear if i using DISTINCT or GROUP BY on long text, some text will be cut off
    from the result.... does anyone know is there a limitation on that?

    Jeremy Tan Guest

  4. #3

    Default Re: Text Missing from cfquery

    If I remember correctly (it's been a while since I used 4.5 & Access)
    255 characters is all that can be retreived when using distinct or group
    by (performance issues). The work around is to run a separate query to
    get the complete text. Sorry, I don't have a link to the M$ tech note handy.
    HTH,
    Tim
    --
    Tim Carley
    [url]www.recfusion.com[/url]
    [email]info@NOSPAMrecfusion.com[/email]
    Tim Carley Guest

  5. #4

    Default Re: Text Missing from cfquery

    Tim is correct, the limit is 255 characters in an Access text field. I got
    around this, however, by changing the field type to meme, which allows
    unlimited text in the Access field. It worked in 4.5 and is currently
    displaying just fine using CF7. Good luck~

    sosueme 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