I have the below code in my .pc file which is called by almost 10 processes but for one process its not working as showing "Core dump/Segmentation Fault" . This is the code which is called by every process as the first step to connect to Database. Please suggest where is the problem in the below code -:

void DatabaseLogon (void)
{
   EXEC SQL BEGIN DECLARE SECTION;
      char *pchORALOG="";
   EXEC SQL END DECLARE SECTION;

   EXEC SQL WHENEVER SQLERROR DO SQLError();

   /* Save text of current SQL statement in the ORACA if an error occurs. */

   oraca.orastxtf = ORASTFERR;

   /* try to get the oracle login user/pass at the process level */
        if ( (pchORALOG=getenv("oralog")) == NULL )
        {
         printf("Error:Cannot Logon to database!\n");
         SQLError();
        }
      else
        {
         EXEC SQL CONNECT :pchORALOG;
        }
} /* End Of DatabaseLogon */

Thanks Arpita

link|improve this question
1  
If your getting a core dump then looking at the dump in you debugger might well give you a clue. Also what makes you think that this is the piece of code that's causing the problem? – Jackson Jun 28 '11 at 10:38
What is Pro C?! – Matt Joiner Jun 28 '11 at 13:53
I just did pstack core and I saw its stuck at Databaselogon() and there since there were no debug symbols found in core dump so could not debug further... And as far as Pro C concerned its Pro *C !!! – arpita Jun 28 '11 at 16:55
Can you paste us the debug info of the core file ? – Sachin Chourasiya Mar 7 at 9:00
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.