Report Builder and stored Procs

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

  1. #1

    Default Report Builder and stored Procs

    Is it possible to use a stored proc instead of query in report builder. This
    tool lacks any documentation that I can find. I have tried both: cfstoredproc
    proceedure='myProc' and CFQUERY exec myProc niether seem to work. Thanks in
    Advance for any help.

    LanceS Guest

  2. Similar Questions and Discussions

    1. Report Builder (expression builder syntax)
      I'm trying to create a calculated field that will compare the values from one query field and depending on the values will assign a value to the...
    2. Stored Procs
      What are the different ways to fire stored procedures in a SQL 2000 server? Which is better? I have seen simply: set rs = conn.execute("sproc") ...
    3. Stored Procs Compiling
      I'm using db2 8.1 with the latest service pack on Windows 2k and XP, both with latest service packs. I have Visual Studio 6 installed with latest...
    4. SQL stored procs in 8.1
      I was told ver DB2 8.1 has got SQL stored proc support (unlike earlier versions where we had only the concept of expternal stored procs which need...
    5. Stored Outlines For Queries In PL/SQL Stored Procs
      Hi, Oracle 8.1.7.3 SunOS 5.7 I would like to know how to create stored outlines for some queries I have in stored procedures. The queries may...
  3. #2

    Default Re: Report Builder and stored Procs

    Yes, it can absolutely use stored procs. If you use the advanced query to
    create it, however, the builder cannot automatically introspect the result
    set. Using SQL Server syntax for queries, though, you could simply type
    "exec myCoolStoredProc" in the text area of the query builder and it will
    work (this is what gets wrapped up inside of a cfquery block).

    Dean

    "LanceS" <webforumsuser@macromedia.com> wrote in message
    news:d0ne3l$92h$1@forums.macromedia.com...
    > Is it possible to use a stored proc instead of query in report builder.
    This
    > tool lacks any documentation that I can find. I have tried both:
    cfstoredproc
    > proceedure='myProc' and CFQUERY exec myProc niether seem to work. Thanks
    in
    > Advance for any help.
    >

    Dean Harmon 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