Hi,

Does it make difference to do early or late binding in ADO.net?


MTIA,
Grawsha

Re: Late and early binding by Miha

Miha
Fri May 28 03:30:53 CDT 2004

Huh?
Are you refering to strong typed datasets?

--
Miha Markic [MVP C#] - RightHand .NET consulting & development
miha at rthand com
www.rthand.com

"al" <grawsha2000@yahoo.com> wrote in message
news:66edfd3c.0405272344.af8f49e@posting.google.com...
> Hi,
>
> Does it make difference to do early or late binding in ADO.net?
>
>
> MTIA,
> Grawsha



Re: Late and early binding by William

William
Fri May 28 06:02:03 CDT 2004

Grawhsa:

I'll go out on a limb here and say that it always makes a difference whether
you use Early binding vs late bindging and late binding usually loses the
battle. On the other hand in the context of ADO.NET, you may be talking
about DataBinding controls which is totally different than what is
traditionally referred to by late binding vs early binding. If this is what
you are talking about, AFAIK, then when you set the bindings isn't the
issue - but I think knowing what you are referring to by binding is an
important issue, b/c if you know enough to ask about early vs late binding ,
you probably know why late binding is less attractive.

HTH,

Bill

--
W.G. Ryan MVP Windows - Embedded

http://forums.devbuzz.com
http://www.knowdotnet.com/dataaccess.html
http://www.msmvps.com/williamryan/
"al" <grawsha2000@yahoo.com> wrote in message
news:66edfd3c.0405272344.af8f49e@posting.google.com...
> Hi,
>
> Does it make difference to do early or late binding in ADO.net?
>
>
> MTIA,
> Grawsha



Re: Late and early binding by Patrice

Patrice
Fri May 28 08:36:23 CDT 2004

It's always different. Probably not very well explained but basically :
- Early binding is to know the type of an object at compile time. The
compiler have all the needed element at compile time to build the call into
the excutable code (resolution of calls at compile time)
- With late binding, the type of an object is known only at runtime. It will
need extra instructions to find out where is the method to be called (if it
exists) before calling it (resolution of calls at runtime)



"al" <grawsha2000@yahoo.com> a écrit dans le message de
news:66edfd3c.0405272344.af8f49e@posting.google.com...
> Hi,
>
> Does it make difference to do early or late binding in ADO.net?
>
>
> MTIA,
> Grawsha