1. Go to this page and download the library: Download eufony/dbal library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// PostgreSQL
$postgres = new PostgreSQLDriver($dsn, $user, $password);
// MySQL
$mysql = new MySQLDriver($dsn, $user, $password);
// SQLite
$sqlite = new SQLiteDriver($path); // $path can also be `:memory:` for an ephemeral database
// Define the query
$query = Select::from("users");
// You can also extend the query using loops, conditional logic, etc.
if ($fetch_ids_only) {
$query = $query->fields(["id"]);
}
// Generate the query string and send it to the database for execution
$users = $query->execute();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.