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 8527755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T08:38:43+00:00 2026-06-11T08:38:43+00:00

When trying to execute a statement on Oracle RDBMS I always get OCI_INVALID_HANDLE as

  • 0

When trying to execute a statement on Oracle RDBMS I always get OCI_INVALID_HANDLE as status (checked with gdb) and the statement therefore is not executed.

May someone could help to get this working:

OCIEnv* envh;
OCISvcCtx* svch;
OCIError* errh;
sword stat;
stat = OCIExtProcGetEnv (context, &envh, &svch, &errh);
OCIStmt* stmthp;

char errbuf[512];
sb4 errcode = 0;

char * cmd = "alter session set NLS_DATE_FORMAT='dd/mm/yyyy hh24:mi:ss'";

sword status = OCIStmtPrepare(stmthp, errh, (const OraText*)cmd, (ub4) strlen(cmd), (ub4) OCI_NTV_SYNTAX, (ub4) OCI_DEFAULT);

if ( status != OCI_SUCCESS )
{
    OCIErrorGet((void*)errh, (ub4) 1, (text *) NULL, &errcode,
            (text*)errbuf, (ub4) sizeof(errbuf), OCI_HTYPE_ERROR);
    OCIExtProcRaiseExcpWithMsg((OCIExtProcContext*)context, errcode, (text*)errbuf, sizeof(errbuf));    
}

context is an OCIExProcContext* passed from PL/SQL to this external procedure

A simple OCIExtProcRaiseExcpWithMsg((OCIExtProcContext*)context, 34, (text*)"custom", 6); work without problems. Furthermore I checked all other pointer with gdb and they seem quite nice. May I missed some initialization?

  • 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-06-11T08:38:44+00:00Added an answer on June 11, 2026 at 8:38 am

    You forgot to allocate a statement handle. The variable stmthp you’re passing into OCIStmtPrepare is not initialized:

    sword status = OCIHandleAlloc((dvoid *)envh, 
                     (dvoid **) &stmthp,
                     (ub4) OCI_HTYPE_STMT,  
                     (size_t) 0, 
                     (dvoid **) 0));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to execute this insert statement into an oracle table but am
When I am trying to execute INSERT statement in oracle, I got SQL Error:
I am trying to execute a INSERT statement on a mySQL DB in C#:
I'm trying to execute a SELECT statement that includes a column of a static
I have a problem when trying to execute this update statement (below) using C#
Here's a LINQ statement that I am trying to execute var usersQuery = from
I am trying to write a statement for counting the employees attendance and execute
I'm trying to debug a SQL statement generated with sqlite3 python module... c.execute(SELECT *
I'm trying to execute an Insert statement, but keep getting a Invalid object name
I'm trying to execute an inline SQL statement within a stored procedure. I'm working

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.