[BACK]Return to sqlite_int64.3 CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / public-domain / sqlite / man

File: [cvs.NetBSD.org] / src / external / public-domain / sqlite / man / sqlite_int64.3 (download)

Revision 1.3, Sat Mar 11 16:29:52 2017 UTC (7 years, 1 month ago) by christos
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-compat-base, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek, bouyer-socketcan-base1
Branch point for: phil-wifi, pgoyette-compat
Changes since 1.2: +3 -1 lines

merge 3.17.0

.Dd March 11, 2017
.Dt SQLITE_INT64 3
.Os
.Sh NAME
.Nm sqlite_int64 ,
.Nm sqlite_uint64 ,
.Nm sqlite_uint64 ,
.Nm sqlite_int64 ,
.Nm sqlite_uint64 ,
.Nm sqlite_int64 ,
.Nm sqlite_uint64 ,
.Nm sqlite3_int64 ,
.Nm sqlite3_uint64
.Nd 64-Bit Integer Types
.Sh SYNOPSIS
.Vt typedef SQLITE_INT64_TYPE sqlite_int64;
.Vt typedef SQLITE_UINT64_TYPE sqlite_uint64;
.Vt typedef unsigned SQLITE_INT64_TYPE sqlite_uint64;
.Vt typedef __int64 sqlite_int64;
.Vt typedef unsigned __int64 sqlite_uint64;
.Vt typedef long long int sqlite_int64;
.Vt typedef unsigned long long int sqlite_uint64;
.Vt typedef sqlite_int64 sqlite3_int64;
.Vt typedef sqlite_uint64 sqlite3_uint64;
.Sh DESCRIPTION
Because there is no cross-platform way to specify 64-bit integer types
SQLite includes typedefs for 64-bit signed and unsigned integers.
.Pp
The sqlite3_int64 and sqlite3_uint64 are the preferred type definitions.
The sqlite_int64 and sqlite_uint64 types are supported for backwards
compatibility only.
.Pp
The sqlite3_int64 and sqlite_int64 types can store integer values between
-9223372036854775808 and +9223372036854775807 inclusive.
The sqlite3_uint64 and sqlite_uint64 types can store integer values
between 0 and +18446744073709551615 inclusive.