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

  1. #1

    Default Re: Oracle on CFMX 7

    "Bill_Sahlas" <bsahlas@macromedia.com>, haber iletisinde şunları
    yazdı:cugmdg$1lt$1@forums.macromedia.com...
    >"The Oracle Thin Client will not work with CLOBS/BLOBS on
    > CFMX. It doesn't implement this part of the JDBC spec in a Vendor neutral
    > fashion."
    Is this still true for new JDBC drivers that are released by Oracle in year
    2004?

    Murat.


    Murat Demirci Guest

  2. Similar Questions and Discussions

    1. CFMX and Oracle 10G JDBC no longer retrievestimestamp with date
      I am using ColdFusion 7 are you using 6.1?
    2. 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...
    3. CFMX 6.1 and Oracle cold backups causes cf failure
      I am working a problem with our Cold Fusion Server that appears to be related to database use. Every Saturday evening at 1800 and Sunday morning...
    4. Clob problem, CFMX 6.1 and Oracle on a W2003 server
      Hello, we use CFMX 6.1 on a Windows 2003 server. With a database: Oracle 9.2 , and MX connects to the database by means of JDBC and an Oracle...
    5. CFMX 6.1 and Oracle 9i Connection Pooling
      I'm running CF MX 6.1 Enterprise with the Native Oracle driver and connecting to an Oracle 9i database. I have maintain connections selected . A...
  3. #2

    Default Re: Oracle on CFMX 7

    Hi all,

    I?m using CF 7 Standard and Oracle JDBC drivers to update a CLOB field. I
    cant?make it work, even with cfqueryparam.

    How can I work with CF 7 Stantard and Oracle JDBC drivers using CLOB fields ?
    I can?t afford CF 7 Enterprise.

    Thx in advance.


    Mustache2 Guest

  4. #3

    Default Re: Oracle on CFMX 7

    Mustache2, we are using CFMX Standard with the OCI driver
    (oracle.jdbc.OracleDriver - jdbc:oracle:oci8:@myservername). In the data
    source Advanced Settings, check the CLOB box (enable long text retrieval).
    There is a problem when I try to update more than one CLOB in a single SQL
    statement, so I have to split it into more than one query. (Note: I don't get
    an error when I update two CLOBs in a single query, it just swaps the content
    of the two fields!) If you have a lot of CLOBs, splitting into multiple
    queries could be a pain, but we only have two, so this is a good workaround.

    You can independently buy the DataDirect drivers (same as come packaged with
    Enterprise), but they are more expensive to purchase than it would cost to
    upgrade CFMX!

    The cfquery SQL is below.

    UPDATE MYTABLE
    SET MYFIELD = <cfqueryparam value="#form.myvar#" cfsqltype="CF_SQL_CLOB">

    pdrich 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