SQLite is an embedded database, i.e. it is usually compiled directly into the application that uses it.
In your case, SQLite should be included in the PHP configuration. SobiPro 's documentation says:
SQLite can be supported directly through the SQLite extension or through the extension of PHP data objects .
To check for PHP extensions, use get_loaded_extensions or something like <?php phpinfo(INFO_MODULES); ?> <?php phpinfo(INFO_MODULES); ?> .
source share