M
Mike
We're using the .NET OleDb classes to read meta data out of SQL
Server, SQL has all of the proper SQL 92 Information Schema Views
however the API in .NET doesn't return View information, it does for
Tables and Stored procs?
====================================== ==============
OleDbConnection cn = new OleDbConnection("my connection");
cn.Open();
DataTable schemaTable=cn.GetOleDbSchemaTable(OleDbSchemaGuid.Views,
null);
====================================
I get the error: The Views OleDbSchemaGuid is not a supported schema
by the 'SQLOLEDB' provider.
Oracle supports it fully, SQL Server has all of the views I wonder why
they didn't support this?
Server, SQL has all of the proper SQL 92 Information Schema Views
however the API in .NET doesn't return View information, it does for
Tables and Stored procs?
====================================== ==============
OleDbConnection cn = new OleDbConnection("my connection");
cn.Open();
DataTable schemaTable=cn.GetOleDbSchemaTable(OleDbSchemaGuid.Views,
null);
====================================
I get the error: The Views OleDbSchemaGuid is not a supported schema
by the 'SQLOLEDB' provider.
Oracle supports it fully, SQL Server has all of the views I wonder why
they didn't support this?