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.

  • 121 Bu dökümanı faydalı bulan kullanıcılar:
Bu cevap yeterince yardımcı oldu mu?

İlgili diğer dökümanlar

What type of databases do you support? PGSQL and MySQL?

All our servers support MySQL and PostgreSQL databases. Also with any of our hosting packages...

How to repair a MySQL database?

In this article we will show you two ways to repair a MySQL database.  1) Through...

How to optimize a MySQL database using phpMyAdmin?

It is always a good idea to keep your databases' tables optimized. Fortunately, making this...

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...

I get an error 'ACCESS DENIED CREATE DATABASE db_name' when I try to import a database

In order to solve this issue follow these steps: Open the MySQL dump with a text editor on...