cfstoredproc for oracle driver

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

  1. #1

    Default cfstoredproc for oracle driver

    I am currently running on CF 5 Standard and an Oracle 9i db. The problem is
    that we had to use the oracle driver to run stored procs in CF 5. Is it the
    same in MX 7? We are looking to upgrade but the price is extremely high
    because we will need to move up to enterprise if we need to continue using the
    oracle driver it is not supported in the standard version of MX 7.

    AdamK Guest

  2. Similar Questions and Discussions

    1. CF MX7 <cfstoredproc> with Oracle
      O.k. I am getting the following error using CF MX7 when I create a new record, but update works fine. However, this works fine on CF MX6.1 ERROR:...
    2. CFSTOREDPROC to Oracle on Linux fails - same query onWin2003 works
      Hi folks I hope you can help me. I'm having a terrible time trying to get a query to work. I've got a CF MX6.1 Standard system talking to an...
    3. CFSTOREDPROC + CFMX 7 + Oracle 10g R2 doesn't work
      For anyone calling Oracle stored procedures in CFMX 7 using CFSTOREDPROC , I thought I would pass on our finding that the JDBC drivers that...
    4. cfstoredproc oracle error code 6550
      The stored procedue runs in Oracle (SQL Plus). When the stored procedure is run using ColdFusion it throws error: wrong number or types or...
    5. [Macromedia][Oracle JDBC Driver][Oracle]ORA-01000:maximum open cursors exceeded
      Here is the technote from Macromedia regarding this issue: http://www.macromedia.com/go/tn_17660 Hope this helps!
  3. #2

    Default Re: cfstoredproc for oracle driver

    You usually don't need to use "native" drivers to use stored procedures, as I
    have used ODBC on CF 4.5 and MX 6.1 to run stored procs on Oracle 8.0, 8i, and
    9i, including procs that return reference cursors. (Making sure that you don't
    use the Microsoft ODBC drivers for Oracle as they suck, using the ODBC drivers
    from Oracle instead ). Granted, the drivers that come with the Enterprise
    version are superior to using ODBC, but it will work (also depending, of
    course, on the Oracle client installed on your server).

    I'm curious, what was it that required you to use the Oracle driver for CF 5?

    Phil

    paross1 Guest

  4. #3

    Default Re: cfstoredproc for oracle driver

    We were using the Microsoft ODBC drivers and they could not run the stored
    procedures at all. The whole process would bomb before it got started. I will
    try it with the ODBC drivers from Oracle and see how that goes. That was
    really the only reason for us to move to enterprise. Thanks.

    AdamK Guest

  5. #4

    Default Re: cfstoredproc for oracle driver

    wait you are confusing me here. The Oracle ODBC drivers are the native
    drivers. Which would then mean we would have to move to enterprise. I am
    looking for a way to run stored procs on the Microsoft driver so that we can
    use the Standard edition.

    AdamK Guest

  6. #5

    Default Re: cfstoredproc for oracle driver

    No, the "native" drivers would be JDBC, but you can download ODBC drivers for
    your particular version of Oracle in order to set up ODBC socket DSNs. I know
    that the Microsoft ODBC for Oracle drivers do not work for stored procedures,
    which is why I downloaded and installed the Oracle version (8.0.6.6.0) for my
    application when it was running on Oracle 8.0.6, which was not compatible with
    JDBC.

    [url]http://www.oracle.com/technology/software/tech/windows/odbc/index.html[/url]

    Phil

    paross1 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