Manage cookies that are used for advertising, such as ad personalization, remarketing, and ad effectiveness analysis.
2.6.2. SQLite
SQLite 3 supports mathematical functions.
SQLite on hosting is available in two versions:
- Old version — used by default, required to ensure proper software compatibility.
- Newer version — installed separately, used when you need functions that are not available in the old version.
The old version is available by the name:
sqlite3
Or by the full path:
/usr/bin/sqlite3
The newer version is available only by the full path:
/opt/alt/sqlite/usr/bin/sqlite3
You can find out the exact SQLite version numbers using the –version key:
sqlite3 --version
Or:
/opt/alt/sqlite/usr/bin/sqlite3 --version
(1)