Implemented interface member:
property
IsNull
System.Data.SqlTypes.INullable.IsNull
61 references to IsNull
System.Data (61)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (3)
423if ( stringValue.IsNull ) { 2699if ( value.IsNull ) { 3574if ( value.IsNull ) {
fx\src\data\System\Data\Common\SQLTypes\SQLStringStorage.cs (6)
93if (valueNo1.IsNull && valueNo2.IsNull) 96if (valueNo1.IsNull) 99if (valueNo2.IsNull) 126return ((value.IsNull) ? 0 : value.Value.Length); 130return (values[record].IsNull);
fx\src\data\System\Data\Filter\FunctionNode.cs (1)
348if (((SqlString)argumentValues[0]).IsNull) {
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (1)
271if (!x.IsNull) {
fx\src\data\System\Data\Sql\SqlMetaData.cs (3)
875if (!value.IsNull) 887if (value.IsNull) 1247if (!ss.IsNull)
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (1)
684if(!collation_name.IsNull) {
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
5839if (!sval.IsNull) {
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
335return ((inferLen && !((SqlString)value).IsNull) ? PromoteStringType(((SqlString)value).Value) : MetaNVarChar); // MDAC 87587
fx\src\data\System\Data\SqlClient\SqlParameter.cs (3)
417if ( value is SqlString && !( (SqlString)value ).IsNull ) { 428if ( value is SqlString && !( (SqlString)value ).IsNull ) { 1692if (((SqlString) value).IsNull) // MDAC #79648
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
9904if (!((SqlString)value).IsNull && ((((SqlString)value).Value).Length > 0)) {
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
363return x.IsNull ? Null : SqlBoolean.Parse(x.Value);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (1)
334return x.IsNull ? Null : new SqlByte(Byte.Parse(x.Value, (IFormatProvider)null));
fx\src\data\System\Data\SQLTypes\SQLChars.cs (1)
119 public SqlChars(SqlString value) : this (value.IsNull ? (char[])null : value.Value.ToCharArray()) {
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (1)
471return x.IsNull ? SqlDateTime.Null : SqlDateTime.Parse(x.Value);
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1772return x.IsNull ? Null : SqlDecimal.Parse(x.Value);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
281if (x.IsNull)
fx\src\data\System\Data\SQLTypes\SQLGuid.cs (1)
192return x.IsNull ? Null : new SqlGuid(x.Value);
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
344return x.IsNull ? Null : new SqlInt16(Int16.Parse(x.Value, (IFormatProvider)null));
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
351return x.IsNull ? SqlInt32.Null : new SqlInt32(Int32.Parse(x.Value, (IFormatProvider)null));
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
406return x.IsNull ? Null : new SqlInt64(Int64.Parse(x.Value, (IFormatProvider)null));
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
421return x.IsNull ? Null : new SqlMoney(Decimal.Parse(x.Value,NumberStyles.Currency,null));
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
287if (x.IsNull)
fx\src\data\System\Data\SQLTypes\SQLString.cs (28)
275if (!IsNull) 287if (!IsNull) 299if (!IsNull) 307 SQLDebug.Check(!IsNull); 317if (!IsNull) { 331if (!IsNull) 360return IsNull ? SQLResource.NullString : m_value; 367if (IsNull) 377if (IsNull) 403if (x.IsNull || y.IsNull) 419SQLDebug.Check(!x.IsNull && !y.IsNull, 462if (x.IsNull || y.IsNull) 598if (IsNull) 791return(!IsNull && (m_flag & (SqlCompareOptions.BinarySort | SqlCompareOptions.BinarySort2)) != 0); 850SQLDebug.Check(!x.IsNull && !y.IsNull); 927if (IsNull) 928return value.IsNull ? 0 : -1; 929else if (value.IsNull) 957if (i.IsNull || IsNull) 958return (i.IsNull && IsNull); 968if (IsNull) 1022if (IsNull) {