SQLite is a full featured file based database where security ( if required ) can be added to the file based on the environment.
There is no userid and password to connect to SQLite database. SQLite is not like our other database (Example : Oracle or MySQL ) which runs on a client – server concept.
No need to install or setup to use SQLite. The initial procedure of setup, configuration and run of database server is not required in case of SQLite.
Portable Database
The database with table created in Python can be copied and used in PHP environment. We will learn more about using SQLite database in PHP environment using PDO and SQLite3 library.