sqliteHow can I use PHP to query a SQLite database?
Using PHP to query a SQLite database is relatively easy. The following example code block will illustrate how to do this:
<?php
// Connect to the database
$db = new SQLite3('mydatabase.sqlite');
// Create a query
$query = "SELECT * FROM mytable";
// Execute the query
$result = $db->query($query);
// Loop through the results
while ($row = $result->fetchArray()) {
echo "Name: " . $row['name'] . "<br />";
echo "Age: " . $row['age'] . "<br />";
}
?>
This code will output something like this:
Name: John Doe
Age: 33
Name: Jane Doe
Age: 28
This code consists of the following parts:
$db = new SQLite3('mydatabase.sqlite');
- This part creates a connection to the SQLite database.$query = "SELECT * FROM mytable";
- This part creates a query that will select all data from the tablemytable
.$result = $db->query($query);
- This part executes the query.while ($row = $result->fetchArray()) {...}
- This part loops through the results of the query.echo "Name: " . $row['name'] . "<br />";
- This part prints out the name from the result.
For more information and examples on how to use PHP to query a SQLite database, please see the following links:
More of Sqlite
- How do I list all tables in a SQLite database?
- How do I use SQLite to zip a file?
- How do I create a book database using SQLite?
- How do I use SQLite with Zephyr?
- How do I retrieve the last insert ID in SQLite?
- How can I use SQLite with Laravel?
- How can I use SQLite with Github?
- How do I use the SQLite CONCAT function?
- How can I get the year from a date in SQLite?
- How do I truncate a table in SQLite?
See more codes...