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