Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am struggling with an issue regarding running a SQL statement to an Oracle database through C++, using occi. My code is as follows:

#include <iostream>
#include "occi.h"

namespace oc = oracle::occi;

int main() {
    std::cout << "Setting up environment...\n";
    oc::Environment * env = oc::Environment::createEnvironment();

    std::cout << "Setting up connection...\n";
    oc::Connection * conn = env->createConnection("user","pass","server");

    std::cout << "Creating statement...\n";
    //Very simply query... 
    oc::Statement * stmt = conn->createStatement("SELECT '1' FROM dual");

    std::cout << "Executing query...\n";
    oc::ResultSet * rs = stmt->executeQuery();

    while(rs->next()) {
            std::cout << rs->getString(1) << std::endl; //Error is thrown at this line, but after printing since I can see '1' on the console.
    }


    stmt->closeResultSet(rs);
    conn->terminateStatement(stmt);
    env->terminateConnection(conn);
    oc::Environment::terminateEnvironment(env);

    return 0;
}

The error that is shown is:

Unhandled exception at 0x1048ad7a (msvcp100d.dll) in MyDatabaseApp.exe: 0xC0000005: Access violation reading location 0xccccccd0.

My program stops inside 'xstring' at the following line of code:

    #if _ITERATOR_DEBUG_LEVEL == 0

    ....

    #else /* _ITERATOR_DEBUG_LEVEL == 0 */
    typedef typename _Alloc::template rebind<_Elem>::other _Alty;

    _String_val(_Alty _Al = _Alty())
            : _Alval(_Al)
            {   // construct allocator from _Al
            ....
            }

    ~_String_val()
            {   // destroy the object
            typename _Alloc::template rebind<_Container_proxy>::other
                    _Alproxy(_Alval);  

            this->_Orphan_all(); //<----------------------Code stops here

            _Dest_val(_Alproxy, this->_Myproxy);
            _Alproxy.deallocate(this->_Myproxy, 1);
            this->_Myproxy = 0;
            }
    #endif /* _ITERATOR_DEBUG_LEVEL == 0 */

If I change my query to:

oc::Statement * stmt = conn->createStatement("SELECT 1 FROM dual"); 

and the loop statement to:

std::cout << rs->getInt(1) << std::endl;

It works fine with no errors. I think this is because getting an integer simply returns a primitive, but when an object is being returned it is blowing up (I think on a destructor, but I'm not sure why...)

I have been playing around with this for hours today, and I am pretty stuck.

Some information about my system:

  • OS - Windows XP
  • Oracle Version - 10g
  • IDE - Microsoft Visual Studio 2010 Express C++

My project properties are as follows:

  • C/C++ - General - Additional Include Directories = C:\oracle\product\10.2.0\client_1\oci\include;%(AdditionalIncludeDirectories)
  • C/C++ - Code Generation - Multi-threaded Debug DLL (/MDd)
  • Linker - General - Additional Library Directories = C:\oracle\product\10.2.0\client_1\oci\lib\msvc\vc8;%(AdditionalLibraryDirectories)
  • Linked - Input - Additional Dependencies = oraocci10.lib;oraocci10d.lib;%(AdditionalDependencies)

I hope I haven't been confusing with too much info... Any help or insight would be great, Thanks in advance!

EDIT If I rewrite my loop, storing the value in a local variable, the error is thrown at the end of the loop:

while(rs->next()) {
    std::string s = rs->getString(1); //s is equal to "1" as expected
    std::cout << s << std::endl; //This is executed successfully
} //Error is thrown here
share|improve this question
What if you assign rs->getString(1) to a local string variable to examine it in the debugger? What does that show? – OldProgrammer Feb 14 at 22:54
@LeorA That was my first thought. So if I create a local variable and assign its value to 'rs->getString(1)' it's value is "1" (as expected) and it prints out, but I get the same error on the closing "}" of the loop... – SoulDZIN Feb 14 at 22:59
Looks like some kind of memory corruption problem. Good luck. – OldProgrammer Feb 14 at 23:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.