Jambo
Новичок
Типы полей в SQLite 3
Я новичок в мире SQLite, поэтому заранее прошу прощения.
Объясните мне, пожалуйста, смысл поля типа NULL ? Какие значения могут принимать строки для данного поля?
Какова максимальная длина поля типа TEXT? Я так понимаю, это что-то вроде Memo?
Each value stored in an SQLite database (or manipulated by the database engine) has one of the following storage classes:
*
NULL. The value is a NULL value.
*
INTEGER. The value is a signed integer, stored in 1, 2, 3, 4, 6, or 8 bytes depending on the magnitude of the value.
*
REAL. The value is a floating point value, stored as an 8-byte IEEE floating point number.
*
TEXT. The value is a text string, stored using the database encoding (UTF-8, UTF-16BE or UTF-16-LE).
*
BLOB. The value is a blob of data, stored exactly as it was input.
Я новичок в мире SQLite, поэтому заранее прошу прощения.
Объясните мне, пожалуйста, смысл поля типа NULL ? Какие значения могут принимать строки для данного поля?
Какова максимальная длина поля типа TEXT? Я так понимаю, это что-то вроде Memo?
Each value stored in an SQLite database (or manipulated by the database engine) has one of the following storage classes:
*
NULL. The value is a NULL value.
*
INTEGER. The value is a signed integer, stored in 1, 2, 3, 4, 6, or 8 bytes depending on the magnitude of the value.
*
REAL. The value is a floating point value, stored as an 8-byte IEEE floating point number.
*
TEXT. The value is a text string, stored using the database encoding (UTF-8, UTF-16BE or UTF-16-LE).
*
BLOB. The value is a blob of data, stored exactly as it was input.