April 2003
Beginner to intermediate
620 pages
21h 48m
English
SqlInt64
A structure that represents a 64-bit signed integer that can contain
a value ranging from -263
(-9223372036854775808) to 263-1
(9223372036854775807). It maps to the SQL Server
bigint data type.
public struct SqlInt64 : INullable, IComparable { // Public Constructors public SqlInt64(longvalue); // Public Static Fields public static readonly SqlInt64 MaxValue; // =9223372036854775807 public static readonly SqlInt64 MinValue; // =-9223372036854775808 public static readonly SqlInt64 Null; // =Null public static readonly SqlInt64 Zero; // =0 // Public Instance Properties public bool IsNull{get; } // implements INullable public long Value{get; } // Public Static Methods public static SqlInt64 Add(SqlInt64x, SqlInt64y); public static SqlInt64 BitwiseAnd(SqlInt64x, SqlInt64y); public static SqlInt64 BitwiseOr(SqlInt64x, SqlInt64y); public static SqlInt64 Divide(SqlInt64x, SqlInt64y); public static SqlBoolean Equals(SqlInt64x, SqlInt64y); public static SqlBoolean GreaterThan(SqlInt64x, SqlInt64y); public static SqlBoolean GreaterThanOrEqual(SqlInt64x, SqlInt64y); public static SqlBoolean LessThan(SqlInt64x, SqlInt64y); public static SqlBoolean LessThanOrEqual(SqlInt64x, SqlInt64y); public static SqlInt64 Mod(SqlInt64x, SqlInt64y); public static SqlInt64 Multiply(SqlInt64x, SqlInt64y); public static SqlBoolean NotEquals(SqlInt64x, SqlInt64y); public static SqlInt64 OnesComplement(SqlInt64x); public static SqlInt64 operator &(SqlInt64x, SqlInt64 ...
Read now
Unlock full access