Does MX7 strip SQL comments?

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

  1. #1

    Default Does MX7 strip SQL comments?

    We had a single CF MX 6 server, and recently commissioned a second CF MX 7
    server. Both of these query the same SQL Server 2000 database. We are using the
    Microsoft SQL Server driver in both cases. What I have noticed is that SQL
    comments (-- comment) appear to be stripped from the SQL statements being sent
    from the new (MX7) server. Has anyone else noticed this as an issue, and is
    there any way to stop it? We use the comments to identify statements in traces
    for statistical performance analysis.

    blorg Guest

  2. Similar Questions and Discussions

    1. Disable Options>Import Comments in Comments Pane
      A customer asked me to replace the logic of the Comments>Import Comments menu item. I can easily find and replace this menu item with the name...
    2. strip out html
      is there a function in asp to strip out html characters ? adam
    3. HELP strip slashes ???
      Everyone, I am doing an admin site for a person and their small site. I need to allow them to put in paragraphs of information. I am allowing...
    4. [PHP] Strip Numbers
      You could use two substr()s or an ereg_replace() $result = substr($str, 0, 2) . substr($str, 5); or $result = ereg_replace("()990()", "\\1\\2",...
    5. Strip Numbers
      Hey could someone help me out here.... I need to strip numbers from a passed variable ex. 3899007 all the numbers will have 990 (so that is...
  3. #2

    Default Re: Does MX7 strip SQL comments?

    Why not create an extra SP variable for this purpose instead of comments?

    The variable would just be varchar or text containing the relevant note.

    That would seem to be a more universal and maintainable approach than using
    comments for trace purposes.

    (As you have seen, even if it works now, the comment approach could be broken
    by the next improvement to CF or even your RDBMS.)

    MikerRoo 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