Advertisement
Advertisement
| 05.02.2008 at 11:06AM PDT, ID: 23372474 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: |
class Data
{
object _connection;
public object openConnection()
{
//I want to set this sqlconnection object.
//For example when i set a prop this method return me a oledb connection
((SqlConnection)_connection).ConnectionString = "bla bla bla";
((SqlConnection)_connection).Open();
return _connection;
}
}
|