29 references to SqlInt64
System.Data (29)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
573
result = new
SqlInt64
( temp );
996
result = new
SqlInt64
( GetInt64_Unchecked( sink, getters, ordinal ) );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
646
return new
SqlInt64
(XmlConvert.ToInt64((string)value));
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
590
return new
SqlInt64
(_value._int64);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
517
sqlVal = new
SqlInt64
((Int64)comVal);
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (24)
95
return new
SqlInt64
(x);
120
return new
SqlInt64
(Int64.Parse(s, (IFormatProvider)null));
129
return x.IsNull ? Null : new
SqlInt64
(-x.m_value);
136
return x.IsNull ? Null : new
SqlInt64
(~x.m_value);
154
return new
SqlInt64
(lResult);
168
return new
SqlInt64
(lResult);
229
return new
SqlInt64
(lResult);
243
return new
SqlInt64
(x.m_value / y.m_value);
260
return new
SqlInt64
(x.m_value % y.m_value);
271
return(x.IsNull || y.IsNull) ? Null : new
SqlInt64
(x.m_value & y.m_value);
278
return(x.IsNull || y.IsNull) ? Null : new
SqlInt64
(x.m_value | y.m_value);
285
return(x.IsNull || y.IsNull) ? Null : new
SqlInt64
(x.m_value ^ y.m_value);
296
return x.IsNull ? Null : new
SqlInt64
((long)x.ByteValue);
304
return x.IsNull ? Null : new
SqlInt64
((long)(x.Value));
312
return x.IsNull ? Null : new
SqlInt64
((long)(x.Value));
320
return x.IsNull ? Null : new
SqlInt64
((long)(x.Value));
338
return new
SqlInt64
((long)value);
353
return new
SqlInt64
((long)value);
361
return x.IsNull ? Null : new
SqlInt64
(x.ToInt64());
397
return new
SqlInt64
(llRetVal);
406
return x.IsNull ? Null : new
SqlInt64
(Int64.Parse(x.Value, (IFormatProvider)null));
682
public static readonly SqlInt64 Zero = new
SqlInt64
(0);
686
public static readonly SqlInt64 MinValue = new
SqlInt64
(Int64.MinValue);
690
public static readonly SqlInt64 MaxValue = new
SqlInt64
(Int64.MaxValue);