What database am I using?
-
Does anyone know how to get the name of the database server I am connecting to with OleDB.NET in C# e.g. is it SQL Server or is it Oracle, etc. Cheers, Dave.
-
Does anyone know how to get the name of the database server I am connecting to with OleDB.NET in C# e.g. is it SQL Server or is it Oracle, etc. Cheers, Dave.
Usually most of that information can be obtained from your OleDbConnection object. Look up the public properties of that class.
Bruce Duncan, CP#9088, CPUA 0xA1EE, Sonork 100.10030
I can levitate birds... -
Usually most of that information can be obtained from your OleDbConnection object. Look up the public properties of that class.
Bruce Duncan, CP#9088, CPUA 0xA1EE, Sonork 100.10030
I can levitate birds...I've looked at them and that info doesn't seem to be available. Any other ideas? Ta, Dave.