Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 412939
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T18:08:05+00:00 2026-05-12T18:08:05+00:00

Under Weblogic 10, I am using Hibernate to store data into several tables with

  • 0

Under Weblogic 10, I am using Hibernate to store data into several tables with BLOBs. It’s always worked fine but the customer found specific circumstances where 15% of the BLOBs have the correct size but only contain null characters. I can’t figure out what makes it good or full of emptiness.

The BLOB type I am using does a:

public void nullSafeSet(PreparedStatement st, Object value, int index) throws HibernateException, SQLException {
    if (value == null) {
        st.setNull(index, sqlTypes()[0]);
        return;
    }

    try {
        Connection conn = st.getConnection();
        if (conn instanceof org.apache.commons.dbcp.DelegatingConnection) {
            log.debug("Delegating connection, digging for actual driver");
            conn = ((org.apache.commons.dbcp.DelegatingConnection)st.getConnection()).getInnermostDelegate();
        }
        OutputStream tempBlobWriter = null;
        BLOB tempBlob = BLOB.createTemporary(conn, true, BLOB.DURATION_SESSION);
        try {
            tempBlob.open(BLOB.MODE_READWRITE);
            tempBlobWriter = tempBlob.setBinaryStream(1L);
            tempBlobWriter.write((byte[])value);
            tempBlobWriter.flush();
        } finally {
            if (tempBlobWriter != null)
                tempBlobWriter.close();
            tempBlob.close();
        }

        st.setBlob(index, (Blob) tempBlob);
    } catch (IOException e) {
        throw new HibernateException(e);
    }
}

I put a log in there and can confirm that the value (byte[]) is good. I tried to change the createTemporary parameters, no success.

I am running this under Weblogic 10.0 (can’t upgrade that) with the bundled Oracle Thin driver.

A clue is that the working calls come from the standard web service deployed and managed by WLS. But the problematic calls are done from a thread started along with the component that interfaces with some legacy system with JNI. This thread works like a charm for everything except these BLOBs. I am getting a new Session just before inserting the data and closing it a bit after. (The Session does NOT remain open for the lifetime of the thread)

I have set the Hibernate log level to DEBUG but it does not give me any clue. I’m starting to run out of ideas…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T18:08:05+00:00Added an answer on May 12, 2026 at 6:08 pm

    Problem solved.

    In fact, I was doing:

    • open session
      • open transaction
        • get first item from legacy system
        • write first item to database (blob)
      • close transaction
      • open transaction
        • get second item from legacy system
        • write second item to database (blob)
      • close transaction
      • … until the legacy system has nothing more to process
    • close session

    This would typically process between 1 and 5 items per round.

    But because the Oracle driver does not use the standard way of handling blobs in JDBC, our custom type has to create a temporary blob that is stored in the session. And apparently when you’re inserting blobs in differents transactions within the same session, they tend to interfere and cause my problem.

    I solved it by closing the session after each commit. I do not like it but I consider it being the Oracle driver’s fault.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Under Windows XP WPF true 3D content (which is usually displayed using the Viewport3D
Under Linux, my C++ application is using fork() and execv() to launch multiple instances
Under VS's external tools settings there is a Use Output Window check box that
Under what circumstances - if any - does adding programmers to a team actually
Under the View-Model-ViewModel pattern for WPF, I am trying to databind the Heights and
Under what circumstances might you want to use multiple indirection (that is, a chain
Under what circumstances would this or would this not be safe? I have a
Under Windows Server 2003, Enterprise Edition, SP2 (/3GB switch not enabled) As I understand
Under visual studio if you run a web project by pressing the Go button
Under what circumstances should I expect memcpys to outperform assignments on modern INTEL/AMD hardware?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.