12 references to SQL_NULLABILITY
System.Data.Odbc (12)
_generated\0\LibraryImports.g.cs (2)
1445internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLSpecialColumnsW(global::System.Data.Odbc.OdbcStatementHandle StatementHandle, global::System.Data.Odbc.ODBC32.SQL_SPECIALCOLS IdentifierType, string CatalogName, short NameLen1, string SchemaName, short NameLen2, string TableName, short NameLen3, global::System.Data.Odbc.ODBC32.SQL_SCOPE Scope, global::System.Data.Odbc.ODBC32.SQL_NULLABILITY Nullable) 1474static extern unsafe global::System.Data.Odbc.ODBC32.SQLRETURN __PInvoke(nint __StatementHandle_native, global::System.Data.Odbc.ODBC32.SQL_SPECIALCOLS __IdentifierType_native, ushort* __CatalogName_native, short __NameLen1_native, ushort* __SchemaName_native, short __NameLen2_native, ushort* __TableName_native, short __NameLen3_native, global::System.Data.Odbc.ODBC32.SQL_SCOPE __Scope_native, global::System.Data.Odbc.ODBC32.SQL_NULLABILITY __Nullable_native);
src\runtime\src\libraries\Common\src\Interop\Interop.Odbc.cs (1)
369/*SQLUSMALLINT*/ ODBC32.SQL_NULLABILITY Nullable);
System\Data\Odbc\OdbcDataReader.cs (4)
2006ODBC32.SQL_NULLABILITY nullable; 2054nullable = (ODBC32.SQL_NULLABILITY)(int)GetColAttribute(i, ODBC32.SQL_DESC.NULLABLE, ODBC32.SQL_COLUMN.NULLABLE, ODBC32.HANDLER.IGNORE); 2055metaInfos[i].isNullable = (nullable == ODBC32.SQL_NULLABILITY.NULLABLE); 2115if (nullable == ODBC32.SQL_NULLABILITY.UNKNOWN)
System\Data\Odbc\OdbcMetaDataFactory.cs (4)
357switch ((ODBC32.SQL_NULLABILITY)Convert.ToInt16(getTypeInfoValues[indexNULLABLE], null)) 359case ODBC32.SQL_NULLABILITY.NO_NULLS: 363case ODBC32.SQL_NULLABILITY.NULLABLE: 367case ODBC32.SQL_NULLABILITY.UNKNOWN:
System\Data\Odbc\OdbcStatementHandle.cs (1)
276ODBC32.SQL_SCOPE.SESSION, ODBC32.SQL_NULLABILITY.NO_NULLS);