April 2026
Intermediate
1009 pages
34h 15m
English
For SQLite, the necessary steps are explained one after the other: Establish connection, send queries, and analyze return value(s). Special features such as transactions also are not left unmentioned.
Good (and at the same time, bad) news first: Internally, all data in an SQLite database are handled as strings. SQLite therefore performs type conversions more or less automatically. However, this makes handling a little easier.
In PHP, there are two ways of accessing databases for most database types. Either you use functions, as was already the case in PHP 4, and pass a database handle as the first parameter, which you receive when the connection is established, or you use the OOP ...
Read now
Unlock full access