CF to Oracle using Standard

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

  1. #1

    Default CF to Oracle using Standard

    I currently have CFMX 7 standard edition and I'm trying to connect to an oracle
    database. Since I'm on Standard, the Oracle driver doesnt display in the
    dropdown of available drivers, but I DO have the Host, Port and SID of the
    Oracle db. There are even existing Oracle datasources on the server, but I
    cant seem to get the new connection string to work out...

    The existing DSN (that is working) only has this as its JDBC URL:
    jdbc:oracle:oci:@DBNAME

    But, everything that I've seen so far says that I should have something like:
    jdbc:oracle:oci:@SERVERNAME:PORT/DBNAME

    I've tried all kinds of combinations and gotten various results, but I'm
    hoping that I can find something to point me in the right direction..

    Thanks all!

    w0lvie Guest

  2. Similar Questions and Discussions

    1. Oracle ODBC Socket MX7 Standard Issues ORA-06502
      We have an issue where a stored procedure works fine in MX 6.1 standard but does nto work in MX 7 Updater 2 standard. Everything is set up the same....
    2. Oracle JDBC driver and CF MX 7 Standard edition
      hi, guys. is it possible to use Oracle JDBC driver with CF MX 7 Standard edition? all our CF servers are Enterprise edition so we never ran into...
    3. Oracle JDBC driver and CF Standard edition
      hi, guys. is it possible to use JDBC driver for Oracle with CF MX 7 Standard edition? all our CF servers are Enterprise edition and we've been...
    4. CF 7 Standard + Oracle JDBC drivers + CLOB fields
      Hello all, I?m trying to update/select CLOB fields in an Oracle 8.1.7 database with CF 7 Standard Edition. I?m using the Oracle JDBC drivers...
    5. Oracle in MX7 Standard
      I don't have an option for creating a DSN in MX7 Standard. Can anyone assist with help getting this installed or configured? I noticed that...
  3. #2

    Default Re: CF to Oracle using Standard

    You didn't mention the errors you were getting. See
    [url]http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18344[/url]. The
    article uses the classes12.zip file, but your probably using the the 1.4 jvm so
    would want to make sure you have the ojdbc14.jar file in your classpath. Also
    the connections you mentioned use oci and the article is for straight jdbc
    connection.

    HTH.

    Ted Zimmerman

    tzimmerman Guest

  4. #3

    Default Re: CF to Oracle using Standard

    There is always the ODBC socket connection, but this really is a last resort
    option, as it is not the best method of accessing your data source unless you
    have no other choice. (If you do decide to use ODBC, do NOT use the Microsoft
    ODBC drivers. Download and install the ODBC driver from Oracle for your
    particular version, otherwise you will have tons of problems, especially if you
    ever plan on calling stored procedures, etc.)

    Phil

    paross1 Guest

  5. #4

    Default Re: CF to Oracle using Standard

    I'd stay away from ODBC.

    You have a few options. Oracle thin is OK if you're not doing heavy duty
    clob/blob work. There are some other limits you can read about in the
    various migration notes, etc. It's a type 4 though and the price is right.

    The other to look at is Inet Software. They have a 20 connection driver for
    under $300, I think. I've tested it here and it's pretty good. Depending on
    the size of your application, a 20 connection driver might be fine.

    Stephen Dupre
    Adobe Systems, Inc.

    sdupre Guest

  6. #5

    Default Re: CF to Oracle using Standard

    All,

    Excellent advice all around... My only problem is that I'm quite a newbie when
    it comes to all this stuff and pretty much need everything spelled out for
    me... Does anyone know of any sites that have a checklist for doing something
    like this? Granted, the easiest answer is to buy Enterprise edition, but I
    doubt thats going to happen any time soon... So, I'm looking for the next best
    thing...

    Thanks again!!

    w0lvie Guest

  7. #6

    Default Re: CF to Oracle using Standard

    The previous post by Ted Zimmermin gives you a link that pretty much spells it
    out, if you want to download and install the JDBC drivers from Oracle, then
    configure an "other" data source. Keep in mind, you won't be able to call
    stored procedures that return result sets via ref cursors with this thin client.

    Phil

    paross1 Guest

  8. #7

    Default Re: CF to Oracle using Standard

    Now what is the work around for it. Is
    it not possible to use a Oracle thin client with CFMX for Stored Procedures
    which return Reference Cursors.
    Is it possible to call jdbc calls directly from CFMX. Please suggest.

    pradeepu 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