Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Conditional object dimension
Message
From
18/02/2003 17:30:59
 
 
To
18/02/2003 15:56:31
Rex Mahel
Realm Software, Llc
Ohio, United States
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00754495
Message ID:
00754698
Views:
17
I agree with Bonnie. Create two data access components and use whichever is appropriate for the datasource that you're accessing.

-Mike

>Mike,
>
>Is there a way to do what I am trying to do in my original example? I want to be able to use either the OleDb or Oracle provider.
>
>
>Dim strProvider As String = "OracleClient"
>
>If strProvider = "OracleClient"
>	Dim ConPubs As New OracleConnection(odh)
>Else
>	Dim ConPubs As New OleDbConnection(odh)
>End If
>
>ConPubs.Open()
>
>
>Thanks
>
>Rex
>
>
>>Declare the variable outside the If
>>
>>OracleConnection myConnection;
>>OracleCommand myCommand;
>>if () {
>>}
>>
>>The compiler is probably throwing the error because it can't guarantee that the object is created. It's also possible that the variable no longer exists since it was declared within the scope of the IF. I'm not completely sure if VB.Net behaves this way or not.
>>
>>-Mike
Michael Levy
MCSD, MCDBA
ma_levy@hotmail.com
Previous
Reply
Map
View

Click here to load this message in the networking platform