Subject Re: [ib-support] Error: "No current record for fetch operation"
Author Helen Borrie
At 08:22 PM 28-08-02 -0500, you wrote:
>Helen.
>
>Maybe I missed in my first post that the Data Base I use is Firebrid 1.0.
>This error not only rises when I connect a DataSet to the view; when I try
>to see its data in IBConsole, IB Expert or any IB Management tool, I get the
>same error. And when I want to start my application in Delphi ... bum !!
>same message ... :(
>
>Any tip?

As before...all of those tools are built with Delphi, which enscapsulates
the output of a SELECT query in a Dataset object. All it's telling you is
that there is no data output from your query and therefore the operation
you are requesting on it (scrolling, locating, etc.) won't work. By its
own rules, the dataset is asking (through the API) "Send me more rows" and
the client is replying "How can I send you more rows when there are none?"

So - test for an empty dataset before you try to make any requests
concerning rows in it.

heLen