How can I tell if SQLite is installed properly on Linux?
Asked Answered
I

1

6

I'm using a web hosting service on a shared account. They have MySQL, but I need to use SQLite for a Joomla extension called SobiPro. How can I tell if SQLite is installed and working properly on Linux?

Ignazio answered 22/7, 2013 at 10:42 Comment(0)
M
7

SQLite is an embedded database, i.e., it is usually compiled directly into the application that uses it.

In your case, SQLite must be enabled in the PHP configuration. The SobiPro documentation says:

SQLite can be supported directly via the SQLite extension or through the PHP Data Objects extension.

To check PHP extensions, use get_loaded_extensions or something like <?php phpinfo(INFO_MODULES); ?>.

Multilingual answered 22/7, 2013 at 11:1 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.