|
 |
asp_components thread: Object Context
Message #1 by "vinod kumar" <vkyachareni@r...> on 5 Jul 2000 09:44:02 -0000
|
|
is it better to create connection by using Objcontext.createinstance("ADODB.Connection")
or simply saying conn as new ADODB.Connection
vk
Message #2 by V V Ramana-SIHYD <vvramana@h...> on Wed, 5 Jul 2000 17:37:44 -0500 (GMT)
|
|
Hi
as you are using mts go for objcontext.createinstance
you will get adv of conn pooling
bye
Ramana
On 5 Jul 2000, vinod kumar wrote:
> is it better to create connection by using Objcontext.createinstance("ADODB.Connection")
> or simply saying conn as new ADODB.Connection
>
> vk
>
>
>
Message #3 by Ahmad Mahmoud <AM@i...> on Wed, 5 Jul 2000 18:31:07 +0200
|
|
Hi
what's the benifit of Contructor in java
thankx
> -----Original Message-----
> From: V V Ramana-SIHYD
> Sent: 06 July, 2000 12:38 AM
> To: ASP components
> Subject: [asp_components] Re: Object Context
>
> Hi
> as you are using mts go for objcontext.createinstance
> you will get adv of conn pooling
> bye
> Ramana
>
>
> On 5 Jul 2000, vinod kumar wrote:
>
> > is it better to create connection by using
> Objcontext.createinstance("ADODB.Connection")
> > or simply saying conn as new ADODB.Connection
> >
> > vk
> >
> >
> >
>
Message #4 by Ahmad Mahmoud <AM@i...> on Thu, 6 Jul 2000 11:50:34 +0200
|
|
can you give me the algorithm to create dynamic menu at run time in Java
thankx
ahmad
> -----Original Message-----
> From: V V Ramana-SIHYD
> Sent: 06 July, 2000 12:38 AM
> To: ASP components
> Subject: [asp_components] Re: Object Context
>
> Hi
> as you are using mts go for objcontext.createinstance
> you will get adv of conn pooling
> bye
> Ramana
>
>
> On 5 Jul 2000, vinod kumar wrote:
>
> > is it better to create connection by using
> Objcontext.createinstance("ADODB.Connection")
> > or simply saying conn as new ADODB.Connection
> >
> > vk
> >
> >
> >
>
Message #5 by Chanoch Wiggers <ChanochW@w...> on Fri, 7 Jul 2000 11:20:05 +0100
|
|
what does that mean?
-----Original Message-----
From: Ahmad Mahmoud
Sent: Wednesday, July 05, 2000 5:31 PM
To: ASP components
Subject: [asp_components] Re: Object Context
Hi
what's the benifit of Contructor in java
thankx
> -----Original Message-----
> From: V V Ramana-SIHYD
> Sent: 06 July, 2000 12:38 AM
> To: ASP components
> Subject: [asp_components] Re: Object Context
>
> Hi
> as you are using mts go for objcontext.createinstance
> you will get adv of conn pooling
> bye
> Ramana
>
>
> On 5 Jul 2000, vinod kumar wrote:
>
> > is it better to create connection by using
> Objcontext.createinstance("ADODB.Connection")
> > or simply saying conn as new ADODB.Connection
> >
> > vk
> >
> >
> >
Message #6 by "Scheer, Joseph (S/W Prod_Dev/RM)" <Jscheer@r...> on Mon, 10 Jul 2000 10:46:57 -0700
|
|
In Java, as in C++, the constructor for a class allows one to execute code
at the time a new instance of the class is created. It allows one to do
initialization for the specific instance of the class (i.e., object). One
benefit of using the constructor vs. some other method for initialization
is that the constructor is implicitly called when a new instance of the
class is created and is the "standard" object oriented technique for doing
instance initialization.
-----Original Message-----
From: Ahmad Mahmoud
Sent: Wednesday, July 05, 2000 9:31 AM
To: ASP components
Subject: [asp_components] Re: Object Context
Hi
what's the benifit of Contructor in java
thankx
> -----Original Message-----
> From: V V Ramana-SIHYD
> Sent: 06 July, 2000 12:38 AM
> To: ASP components
> Subject: [asp_components] Re: Object Context
>
> Hi
> as you are using mts go for objcontext.createinstance
> you will get adv of conn pooling
> bye
> Ramana
>
>
> On 5 Jul 2000, vinod kumar wrote:
>
> > is it better to create connection by using
> Objcontext.createinstance("ADODB.Connection")
> > or simply saying conn as new ADODB.Connection
> >
> > vk
> >
> >
> >
>
|
|
 |