SQLite FTS3 and FTS4 Extensions
(fts3.html)
8. Tokenizers
... If this option is set to "2", then diacritics are correctly
removed from all Latin characters.
It is also possible to customize the set of codepoints that unicode61 treats
as separator characters. The "separators=" option may be used to specify ...
|
Command Line Shell For SQLite
(cli.html)
22.2. Command-line Options
Extra arguments that start with the "-" character are command-line options.
There are many command-line options available. Use the --help
command-line option to see a list:
$ sqlite3 --help
FILENAME is the name of an SQLite database. A new ...
|
The RBU Extension
(rbu.html)
2.2.2. RBU Database Contents
... For
each column that is being updated, the corresponding character is set to
'x'. For those that remain as they are, the corresponding character of the
rbu_control value should be set to '.'. For example, given the tables
above, the update ...
|
The Spellfix1 Virtual Table
(spellfix1.html)
9. The editdist3 COST table
... To disable the default insertion, deletion, and/or substitution
set their respective cost to 10000 or more.
Other entries in the cost table specific transforms for particular
characters.
The cost of specific transforms should be less than the default costs ...
|
C API: Extract Metadata About A Column Of A Table
(c3ref/table_column_metadata.html)
sqlite3_table_column_metadata()
... The memory pointed to by the character pointers returned for the
declaration type and collation sequence is valid until the next
call to any SQLite API function.
If the specified table is actually a view, an error code is returned ...
|
C API: OS Interface Object
(c3ref/vfs.html)
sqlite3_syscall_ptr(), struct sqlite3_vfs
... If a suffix is added to the zFilename parameter, it will
consist of a single "-" character followed by no more than
11 alphanumeric and/or "-" characters.
SQLite further guarantees that
the string will be valid and unchanged until xClose() is ...
|
Quirks, Caveats, and Gotchas In SQLite
(quirks.html)
... NUL Characters Are Allowed In Text Strings
NUL characters (ASCII code 0x00 and Unicode \u0000) may appear in
the middle of strings in SQLite. This can lead to unexpected behavior.
See the "NUL characters in strings" document for further information ...
|
The C language interface to SQLite Version 2
(c_interface.html)
... then the library assumes UTF-8 variable
sized characters. This makes a difference for the LIKE and GLOB
operators and the LENGTH() and SUBSTR() functions. The static
string sqlite_encoding will be set to either "UTF-8" or
"iso8859" to indicate ...
|
Run-Time Loadable Extensions
(loadext.html)
2. Loading An Extension
... If that does not work, it constructs a
entry point using the template "sqlite3_X_init" where the X is replaced
by the lowercase equivalent of every ASCII character in the filename
after the last "/" and before the first following "." omitting the ...
|
SQLite Frequently Asked Questions
(faq.html)
... You can declare
a VARCHAR(10) and SQLite will be happy to store a 500-million character
string there. And it will keep all 500-million characters intact.
Your content is never truncated. SQLite understands the column type
of "VARCHAR ...
|
Page generated by FTS5 in about 56.08 ms.