Programatically Set Buffer Length

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Programatically Set Buffer Length

    Does anyone know how to programatically override the Long Text Buffer in the DSN?

    Thank you.
    Nytyme Guest

  2. Similar Questions and Discussions

    1. SQL buffer length
      i am using oledbcommand and send sql statement which a statement is very long. then, the dataadapter return nothing. I want to know the max length...
    2. maximum input buffer length exceeded: 1048576
      Hello, when I run a script in perl, it returns the above message. Any ideas how can I solve this problem . Thanks Raquel Marques
    3. #25217 [NEW]: calling ob_gzhandler after modified buffer in ob handler, return origin buffer
      From: Xuefer at 21cn dot com Operating system: win PHP version: 4.3.3RC4 PHP Bug Type: Output Control Bug description: ...
    4. How to get length of string? length() problems
      Simplified a bit, I'm parsing HTML documents to get sentences e.g. my $html = get($URL); # remove all HTML TAGs...blah blah blah @sentences =...
  3. #2

    Default Re: Programatically Set Buffer Length

    You might want to do this:

    Create another DSN which points to the same database you're using now. Check
    the "Enable Long Text Retrieval" (CLOB). Now CF will calculate the buffer size
    per each case, instead of using the pre-defined buffer size. This is
    inefficient, so you might want to use this DSN only when you really need it.

    Fernis 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