22 references to OleDbPropertySetGuid
System.Data.OleDb (22)
OleDbCommand.cs (1)
1349
propSet.SetPropertySet(0,
OleDbPropertySetGuid
.Rowset, dbprops);
OleDbConnection.cs (8)
77
value = GetDataSourceValue(
OleDbPropertySetGuid
.DBInit, ODB.DBPROP_INIT_TIMEOUT);
109
value = GetDataSourceValue(
OleDbPropertySetGuid
.DataSource, ODB.DBPROP_CURRENTCATALOG);
113
value = GetDataSourceValue(
OleDbPropertySetGuid
.DBInit, ODB.DBPROP_INIT_CATALOG);
139
value = GetDataSourceValue(
OleDbPropertySetGuid
.DBInit, ODB.DBPROP_INIT_DATASOURCE);
142
value = GetDataSourceValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_DATASOURCENAME);
226
object? value = GetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_CONNECTIONSTATUS);
302
object? value = GetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_QUOTEDIDENTIFIERCASE);
331
SetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSource, ODB.DBPROP_CURRENTCATALOG, ODB.Current_Catalog, true, value);
OleDbConnectionFactory.cs (1)
60
string? providerFileName = oleDbOuterConnection.GetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_PROVIDERFILENAME) as string;
OleDbConnectionInternal.cs (1)
177
object value = GetDataSourceValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_DBMSVER)!;
OleDbConnectionString.cs (3)
181
object? value = connection.GetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_SQLSUPPORT);
197
object? value = command.GetPropertyValue(
OleDbPropertySetGuid
.Rowset, ODB.DBPROP_IRow);
212
object? value = connection.GetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_MULTIPLERESULTS);
OleDbConnectionStringBuilder.cs (2)
433
hash = connection.GetPropertyInfo(new Guid[] {
OleDbPropertySetGuid
.DBInitAll })!;
440
if ((
OleDbPropertySetGuid
.DBInit == info._propertySet) &&
OleDbDataReader.cs (2)
1798
return GetPropertyOnRowset(
OleDbPropertySetGuid
.Rowset, propertyId);
1802
return _command.GetPropertyValue(
OleDbPropertySetGuid
.Rowset, propertyId);
OleDbMetaDataFactory.cs (4)
239
property = connection.GetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_DBMSNAME);
254
property = connection.GetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_GROUPBY);
282
property = connection.GetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSourceInfo, ODB.DBPROP_ORDERBYCOLUNSINSELECT);
660
object? property = connection.GetDataSourcePropertyValue(
OleDbPropertySetGuid
.DataSourceInfo, propertyID);