Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Conditional object dimension
Message
From
18/02/2003 11:26:44
Rex Mahel
Realm Software, Llc
Ohio, United States
 
 
To
All
General information
Forum:
ASP.NET
Category:
Other
Title:
Conditional object dimension
Miscellaneous
Thread ID:
00754495
Message ID:
00754495
Views:
56
All,

I have a codebehind file that I want to be able to use either the OleDb or Oracle data providers. I have created a strProvider variable and use If statements to dimension Connections, Commands, etc for both Oracle and Oledb. After dimensioning the objects, I try to open the connection outside the if statement, since the connection object is created by that time, but the compiler says the object is undefined.
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()
Is there a way to set this so I can conditionally create an object and use them?

Thanks

Rex
Next
Reply
Map
View

Click here to load this message in the networking platform