Subject Re: [IBO] Field Name not found error(Need help!!)
Author Daniel Rail
Hi Helen,

Thanks for the pointer. I did notice in my code that I didn't check for
this before opening (I started doing this practice for awhile now, but
still some places in the code seems to escape me).

Thanks again and I'll let you know if it didn't do any difference(I'm
crossing my fingers that this should do the trick).

Daniel

At 08/01/2002 06:53 PM, you wrote:
>At 02:41 PM 08-01-02 -0400, you wrote:
> >Hi,
> >
> >I got a problem that is not making sense to me at all. I have a client of
> >mine that is getting the following error:
> >
> >Exception 'EIB_StatementError' in module filopto.exe at 00245909
> >FieldName: LASTNAME not found
>
>Daniel,
>I read your other messages where you indicated that this can't be
>replicated even on equivalent hardware and servers...
>
>The usual source of this error is a reference to a column in an unprepared
>dataset. Before you go through the process of reinstalling, it might be
>useful to explore your code for statements that are referring to it as an
>output field or parameter and eliminate the possibility that it could
>occur while the statement was unprepared..i.e. has never been prepared, or
>has been explicitly unprepared. It might be something as simple as
>adding a statement to a handler
>
>...
>if not Prepared then Prepare ;
>