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

  1. #1

    Default Re: UniVerse Database

    LSH, did you ever get to resolve your record locking problems? I'm facing the same thing. If you did, kindly share with me.
    fuit Guest

  2. Similar Questions and Discussions

    1. The Best Online 3D Universe..?
      I'm researching online 3D landscapes/buildings/worlds etc. Any suggestions..?? The bigger the better :)
    2. JDBC - Universe Database - Record Locking
      Better late than never I guess...sorry, I subscribed to the thread, but did not get an email from the forum. Anyway, yes we use UV exclusively on...
    3. UniVerse Database
      Yes, but with additional software. I'm running both UVpe and CFMX7 on XP while in development. But this should also work on Windows200X. I...
    4. Universe Font
      My graphic designer used Universe font and I want to make minor modifications to the document and do not have that font. I can note where to make the...
    5. universe 9.6.2.5 strange behaviour under AIX 5.1
      Hi, need the group wisdom to solve this problem. we are running universe database 9.6.2.5 under AIX 5.1 and Globus application on one of our...
  3. #2

    Default Re: UniVerse Database

    Hi,
    The record-locking problems are because of a bug in IBM's driver. The
    DatabaseMetaData.supportsTransactionLevel function (which ColdFusion uses to
    determine whether or not you can change the isolation level) incorrectly
    returns FALSE instead of TRUE. I'm honestly not sure if they've released a new
    version yet or not (we found a work-around and I haven't spent much more time
    on it). Hope this helps.

    Lynnette


    Here's the ticket we submitted to IBM:

    --------------------------------------------------------------------------------
    -------------
    Product: UniVerse - UV Dbase: UniVerse Platform:
    Release: 9.6.1.14 Dbase Rel: 9.6.1.14 OS: HP-UX
    Problem Cat: Functionality OS Rel: 11

    --------------------------------------------------------------------------------
    ---------------
    Call Summary:
    Problem: Using the UniVerse JDBC driver with ColdFusion, we are not able
    to change the transaction isolation level.

    Details:

    Using the UniVerse JDBC driver, the function
    DatabaseMetaData.supportsTransactionLevel is returning FALSE. However,
    setting the transaction isolation level is supported with this driver
    using setTransactionIsolation, and
    DatabaseMetaData.supportsTransactionLevel should be returning TRUE.


    We use this driver with ColdFusion, and because of this incorrect response
    from supportsTransactionLevel, it assumes it is not possible to set the
    transaction level, and the setTransactionIsolation command is ignored.


    In the guide 'Using the IBM JDBC Driver for UniData and UniVerse', pg 5-24
    lists methods of the DatabaseMetaData interface that are not supported,
    and this function is not in that list.

    Solution:

    To fix this problem, we would need the driver to return TRUE from
    DatabaseMetaData.supportsTransactionLevel.

    ******************************************

    Here was IBM's response on getting it fixed:

    -----Original Message-----
    Sent: Tuesday, November 09, 2004 4:00 PM

    > For my information what does this mean? That a fix is needed and it will
    > appear some time in the future or can you be more specific - say a patch
    > or release date?
    By creating an ECase (Engineering issue), I am indeed acknowledging that
    there is an issue with the product. However I do not have any control on
    what is happening next.
    Engineering has to plan/prioritize issues and sometimes it may not even be
    fixed. We can put a better visibility for any issue with a business case.

    If fixed it will only be available with a next release of the client CD
    (10.1B or later depending on the planning for the fix).

    Reynal Cocaign
    IBM - U2 Technical Support

    LSH 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