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