23 references to OleDbPropertySetGuid
System.Data (23)
fx\src\data\System\Data\OleDb\OleDbCommand.cs (1)
1248propSet.SetPropertySet(0, OleDbPropertySetGuid.Rowset, dbprops);
fx\src\data\System\Data\OleDb\OleDbConnection.cs (8)
82value = GetDataSourceValue(OleDbPropertySetGuid.DBInit, ODB.DBPROP_INIT_TIMEOUT); 116value = GetDataSourceValue(OleDbPropertySetGuid.DataSource, ODB.DBPROP_CURRENTCATALOG); 119value = GetDataSourceValue(OleDbPropertySetGuid.DBInit, ODB.DBPROP_INIT_CATALOG); 148value = GetDataSourceValue(OleDbPropertySetGuid.DBInit, ODB.DBPROP_INIT_DATASOURCE); 150value = GetDataSourceValue(OleDbPropertySetGuid.DataSourceInfo, ODB.DBPROP_DATASOURCENAME); // MDAC 76248 229object value = GetDataSourcePropertyValue(OleDbPropertySetGuid.DataSourceInfo, ODB.DBPROP_CONNECTIONSTATUS); 302object value = GetDataSourcePropertyValue(OleDbPropertySetGuid.DataSourceInfo, ODB.DBPROP_QUOTEDIDENTIFIERCASE); 330SetDataSourcePropertyValue(OleDbPropertySetGuid.DataSource, ODB.DBPROP_CURRENTCATALOG, ODB.Current_Catalog, true, value);
fx\src\data\System\Data\OleDb\OleDbConnectionFactory.cs (1)
65String providerFileName = oleDbOuterConnection.GetDataSourcePropertyValue(OleDbPropertySetGuid.DataSourceInfo,ODB.DBPROP_PROVIDERFILENAME) as string;
fx\src\data\System\Data\OleDb\OleDbConnectionInternal.cs (1)
179object value = GetDataSourceValue(OleDbPropertySetGuid.DataSourceInfo, ODB.DBPROP_DBMSVER);
fx\src\data\System\Data\OleDb\oledbconnectionstring.cs (3)
182object value = connection.GetDataSourcePropertyValue(OleDbPropertySetGuid.DataSourceInfo, ODB.DBPROP_SQLSUPPORT); 195object value = command.GetPropertyValue(OleDbPropertySetGuid.Rowset, ODB.DBPROP_IRow); 208object value = connection.GetDataSourcePropertyValue(OleDbPropertySetGuid.DataSourceInfo, ODB.DBPROP_MULTIPLERESULTS);
fx\src\data\System\Data\OleDb\OledbConnectionStringbuilder.cs (3)
400hash = connection.GetPropertyInfo(new Guid[] { OleDbPropertySetGuid.DBInitAll }); 405if ((OleDbPropertySetGuid.DBInit == info._propertySet) && 494if (OleDbPropertySetGuid.DBInit == info._propertySet) {
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (2)
1643return GetPropertyOnRowset(OleDbPropertySetGuid.Rowset, propertyId); 1646return _command.GetPropertyValue(OleDbPropertySetGuid.Rowset, propertyId);
fx\src\data\System\Data\OleDb\OleDbMetaDataFactory.cs (4)
226property = connection.GetDataSourcePropertyValue(OleDbPropertySetGuid.DataSourceInfo,ODB.DBPROP_DBMSNAME); 242property = connection.GetDataSourcePropertyValue(OleDbPropertySetGuid.DataSourceInfo,ODB.DBPROP_GROUPBY); 269property = connection.GetDataSourcePropertyValue(OleDbPropertySetGuid.DataSourceInfo,ODB.DBPROP_ORDERBYCOLUNSINSELECT); 617object property = connection.GetDataSourcePropertyValue(OleDbPropertySetGuid.DataSourceInfo,propertyID);