Home All Groups Group Topic Archive Search About
Author
30 Mar 2005 5:51 PM
rodchar
hey all,

i'm using the following expression to check a datarow.

if dr.IsDBNull(10) then
....
end if


is there a way to find out what field each integer represents for the
IsDBNull parameter? because i used trial and error?

Author
30 Mar 2005 9:09 PM
Cor Ligthert
Rodchar,

Assuming it is the dr.IsNull what is not that important (watch typos)

dr.table.columns(10).columname

I hope this helps,

Cor
Author
31 Mar 2005 11:25 PM
rodchar
Thank you.

Show quoteHide quote
"Cor Ligthert" wrote:

> Rodchar,
>
> Assuming it is the dr.IsNull what is not that important (watch typos)
>
> dr.table.columns(10).columname
>
> I hope this helps,
>
> Cor
>
>
>