Subject IB_StoredProc crashes
Author joerg@buhren.de
Hi all,

CBuilder 5
IBO 4.2Eb

I useed a IB_StoredProc with
StoredProcForSelect = TRUE
StoredProcHasDML = FALSE

When the application starts I get an exception
'cannot get characteristics' in the IBA_Connection.IMP:

function TIB_Connection.GetCharacteristics:
TIB_ConnectCharacteristics;
begin
if Connected then <<<-----------------
begin
if not FCharacteristicsValid then
SysUpdateCharacteristics;
end
else
raise EIB_ConnectionError.Create( E_CANT_GET_CONN_CHR );
Result := FCharacteristics;
end;

These exception raised, before I connect to the database and before
the Event DModul.OnCreate is fired.

There are no problems in IBO 3.6 .

any idea's whats going wrong here ?

Best Regards
Jörg