Subject | 'Not Implemented' error with IBO 3.6.D.d |
---|---|
Author | Luiz Alves |
Post date | 2001-04-30T01:23:43Z |
Jason,
Using IBO 3_6_D_d and D4 C/S, when I use a sql cursor on 'Cursor tab' of the
IB_WISQL, clicking in next arrow of navigation bar, I get an error of 'Not
Implemented' and IB_WISQL can't more close. I have to use CTRL_ALT_DEL to
kill it.
In IBA_Dataset.IMP, I have on source code:
function TIB_Dataset.ValidateRows( Start, Finish: longint ): boolean;
begin
// Abstract at this level.
raise EIB_DatasetError.Create( 'Not implemented' );
end;
If I comment:
--> // raise EIB_DatasetError.Create( 'Not implemented' );
The error disappears.
I see also:
procedure TIB_Dataset.InvalidateBookmark( const ABookmark: string );
begin
// Abstract at this level.
raise EIB_DatasetError.Create( 'Not implemented' );
end;
I don't know if this procedure above can give some error in another place.
Thanks in advance,
Luiz.
Using IBO 3_6_D_d and D4 C/S, when I use a sql cursor on 'Cursor tab' of the
IB_WISQL, clicking in next arrow of navigation bar, I get an error of 'Not
Implemented' and IB_WISQL can't more close. I have to use CTRL_ALT_DEL to
kill it.
In IBA_Dataset.IMP, I have on source code:
function TIB_Dataset.ValidateRows( Start, Finish: longint ): boolean;
begin
// Abstract at this level.
raise EIB_DatasetError.Create( 'Not implemented' );
end;
If I comment:
--> // raise EIB_DatasetError.Create( 'Not implemented' );
The error disappears.
I see also:
procedure TIB_Dataset.InvalidateBookmark( const ABookmark: string );
begin
// Abstract at this level.
raise EIB_DatasetError.Create( 'Not implemented' );
end;
I don't know if this procedure above can give some error in another place.
Thanks in advance,
Luiz.