| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.misc -> ORA 568
Hello:
I am getting the following error:
Oracle Error!
ORA-00568: Maximum number of interrupt handlers exceeded
when I try to connect to a remote database using Pro*C. The Connect function that I am using is:
void connect() {
EXEC SQL begin declare section;
char *uid = "username";
char *passwd = "password";
char *dbname = "mydb";
EXEC SQL end declare section;
EXEC SQL DECLARE dbname DATABASE;
EXEC SQL whenever sqlerror do sqlerror();
EXEC SQL connect :uid IDENTIFIED BY :passwd AT dbname USING :dbname;
printf("Connected.\n");
}
Any help in this matter is greatly appreciated.
Thanks,
Narsimha Kasibhatla
narasimha.kasibhatla_at_daytonoh.ncr.com Received on Wed Aug 13 1997 - 00:00:00 CDT
![]() |
![]() |