32 references to SqlInt32
System.Data (32)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
552result = new SqlInt32( temp ); 1020result = new SqlInt32( GetInt32_Unchecked( sink, getters, ordinal ) );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
644return new SqlInt32(XmlConvert.ToInt32((string)value));
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
578return new SqlInt32(_value._int32);
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
5117parameter.Value = new SqlInt32(status); // value type
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
515sqlVal = new SqlInt32((Int32)comVal);
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (2)
3050(n.IsPositive ? new SqlInt32(1) : new SqlInt32(-1));
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (24)
95return new SqlInt32(x); 120return new SqlInt32(Int32.Parse(s, (IFormatProvider)null)); 129return x.IsNull ? Null : new SqlInt32(-x.m_value); 136return x.IsNull ? Null : new SqlInt32(~x.m_value); 154return new SqlInt32(iResult); 168return new SqlInt32(iResult); 183return new SqlInt32((int)lResult); 197return new SqlInt32(x.m_value / y.m_value); 214return new SqlInt32(x.m_value % y.m_value); 225return(x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value & y.m_value); 232return(x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value | y.m_value); 239return(x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value ^ y.m_value); 250return x.IsNull ? Null : new SqlInt32((int)x.ByteValue); 258return x.IsNull ? Null : new SqlInt32(x.Value); 266return x.IsNull ? Null : new SqlInt32(x.Value); 284return new SqlInt32((int)value); 299return new SqlInt32((int)value); 314return new SqlInt32((int)value); 322return x.IsNull ? Null : new SqlInt32(x.ToInt32()); 342return new SqlInt32((int)ret); 351return x.IsNull ? SqlInt32.Null : new SqlInt32(Int32.Parse(x.Value, (IFormatProvider)null)); 628public static readonly SqlInt32 Zero = new SqlInt32(0); 632public static readonly SqlInt32 MinValue = new SqlInt32(Int32.MinValue); 636public static readonly SqlInt32 MaxValue = new SqlInt32(Int32.MaxValue);