Is SQLite supported?

SQLite is a software library which implements an SQL database engine. SQLite and PDO_SQLite are supported on all of our servers.

 

SQLite can be used with PHP scripts through the SQLite PHP functions.

 

You can check the SQLite and PDO_SQLite library versions using the phpinfo function. To do this, you should create a simple php file (for example phpinfo.php) with the following line in it:

 

<?php phpinfo(); ?>

 

Then you should open this file in a browser to see the full Apache/PHP information. The path to the file should be:

 

yourdomainname.com/phpinfo.php

 

The SQLite version is shown next to SQLite Library in the SQLite section of the file. Accordingly, the PDO_SQLite version is shown next to SQLite Library in the pdo_sqlite section of the file.

  • 0 Kasutajad peavad seda kasulikuks
Kas see vastus oli kasulik?

Seotud artiklid

Can I change the name of a MySQL database?

The name of a MySQL database consists of a prefix, which is your cPanel username, followed by a...

How can I change my MySQL database collation?

Usually you will be interested in changing your MySQL collation in order to solve problems with...

How can I empty a MySQL database?

The easiest way to empty a MySQL database is through phpMyAdmin.  Once in phpMyAdmin, select the...

How to change the database engine of a MySQL database table?

In this article we will show you how to change the database engine of a MySQL table. Let's...

How to change the MySQL timezone

When you develop your website, you may have to compare a certain date/time with the current...