Conectar a um banco de dados e executar instruções SQL

Documentação da API
  • Vermelho
  • Verde
  • Azul
  • Amarelo
Id URL Método Tipo de Dispositivo Tipo de SO SO Navegador User-Agent Data Requisitado
927 /pt-BR/examples/database-demo GET Bot Bot Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) 2024-10-22 13:32:05
926 /es/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-10-22 13:06:51
925 /es/examples/database-demo GET Mobile / Phone iOS iOS / iPhone Safari Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1 2024-10-22 12:37:05
924 /es/examples/database-demo GET Mobile Android Android 10 Chrome Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Mobile Safari/537.36 2024-10-22 11:11:27
923 /ar/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-10-22 10:18:17
922 /pt-BR/examples/database-demo GET meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler) 2024-10-22 09:53:04
921 /pt-BR/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-10-22 08:10:43
920 /es/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html) 2024-10-22 07:45:35
919 /es/examples/database-demo GET Mobile Android Android 10 Chrome Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36 2024-10-22 06:27:41
918 /ar/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-10-21 13:56:13
917 /es/examples/database-demo GET Mobile Android Android 10 Chrome Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Mobile Safari/537.36 2024-10-21 01:09:52
916 /es/examples/database-demo GET Google 2024-10-21 01:07:27
915 /es/examples/database-demo GET Google 2024-10-21 01:07:20
914 /es/examples/database-demo GET Google 2024-10-21 01:07:19
913 /es/examples/database-demo GET Desktop Windows Windows 10 Chrome Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 2024-10-20 21:40:34
912 /es/examples/database-demo GET Mobile Android Android 10 Chrome Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Mobile Safari/537.36 2024-10-20 19:04:36
911 /en/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; SeznamBot/4.0; +http://napoveda.seznam.cz/seznambot-intro/) 2024-10-20 18:21:35
910 /es/examples/database-demo GET Desktop Windows Windows 10 Chrome Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 2024-10-20 16:01:27
909 /en/examples/database-demo GET meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler) 2024-10-20 11:14:29
908 /es/examples/database-demo GET Mobile Android Android 10 Chrome Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Mobile Safari/537.36 2024-10-20 04:13:45

Visão geral do código do banco de dados

// Conecte a um Banco de Dados
$db = new \FastSitePHP\Data\Database($dsn, $user, $password);

// Consulta para Múltiplos Registros
// Retorna um Array de Registros (Array Associativo para cada Registro).
$sql = 'SELECT * FROM pages';
$records = $db->query($sql);

// Consulta para um registro. Retorna um Array Associativo ou [null] se não
// encontrado. Ambas [query()] e [queryOne()] suportam parâmetros opcionais ao
// consultar.
$sql = 'SELECT * FROM pages WHERE id = ?';
$params = [1];
$record = $db->queryOne($sql, $params);

// Utiliza [execute()] para INSERT, UPDATE, DELETE, CREATE e outras Transações.
// Além de utilizar [?] você pode também utilizar parâmetros nomeados no formato
// ":name". Parâmetros nomeados capo tornar o código mais fácil de ler.
$sql = 'INSERT INTO pages (title, content)';
$sql .= ' VALUES (:title, :content)';
$params = [
    'title'   => 'Banco de Dados de Demonstração',
    'content' => '<h1>Banco de Dados de Demonstração<h1>',
];
$rows_affected = $db->execute($sql, $params);

// Muitos exemplos adicionais pode ser encontrados na página Referência Rápida.

Código PHP para esta página

<?php

namespace App\Controllers\Examples;

use FastSitePHP\Application;
use FastSitePHP\Data\Database;
use FastSitePHP\Lang\I18N;
use FastSitePHP\Web\Request;

class DatabaseDemo
{
    /**
     * Return HTML for the Web Page
     */
    public function get(Application $app, $lang)
    {
        // Load Language File
        I18N::langFile('database-demo', $lang);

        // Add Code Example from text file
        $file_path = $app->config['I18N_DIR'] . '/code/database-demo.{lang}.txt';
        $app->locals['i18n']['db_code'] = I18N::textFile($file_path, $app->lang);

        // Add a record for the request and get the 20 most recent records
        $records = $this->insertAndSelectRecords($app);

        // Render the View
        $templates = [
            'old-browser-warning.htm',
            'examples/database-demo.php',
            'examples/database-demo.htm',
            'table-highlighter.htm',
        ];
        return $app->render($templates, [
            'nav_active_link' => 'examples',
            'records' => $records,
            'controller_code' => file_get_contents(__FILE__),
        ]);
    }

    /**
     * JSON Service that logs requests from button clicks.
     * Returns the 20 most recent records.
     */
    public function routePage(Application $app, $lang, $color)
    {
        return ['records' => $this->insertAndSelectRecords($app)];
    }

    /**
     * Add a record for the request and return recent records
     */
    private function insertAndSelectRecords(Application $app)
    {
        $db = $this->connectToDb();
        $this->insertRecord($app, $db);
        $records = $this->getRecentRecords($db);
        return $records;
    }

    /**
     * Return a Db Connection to a SQLite Database in the Temp
     * Directory. Create the file if it doesn't yet exist.
     */
    private function connectToDb()
    {
        // Path to SQLite Db
        $path = sys_get_temp_dir() . '/database-demo.sqlite';
        $this->checkDb($path);

        // Connect and create table the first time the db is used
        $dsn = 'sqlite:' . $path;
        $db = new Database($dsn);
        $sql = <<<'SQL'
            CREATE TABLE IF NOT EXISTS requests (
                    id INTEGER PRIMARY KEY AUTOINCREMENT,
                    url TEXT,
                    method TEXT,
                    user_agent TEXT,
                    date_requested TIMESTAMP DEFAULT CURRENT_TIMESTAMP
            )
SQL;
        $db->execute($sql);
        return $db;
    }

    /**
     * Delete the SQLite Database every time it reaches over 10 megabytes.
     * It is intended only as a temporary database for this demo page.
     */
    private function checkDb($path) {
        if (is_file($path)) {
            $ten_megabytes = (1024 * 1024 * 10);
            $file_size = filesize($path);
            if ($file_size > $ten_megabytes) {
                unlink($path);
                // Add to a log file each time it's removed
                $log_path = sys_get_temp_dir() . '/database-demo.txt';
                $now = date(DATE_RFC2822);
                $contents = "${path} deleted at ${now}\n";
                file_put_contents($log_path, $contents, FILE_APPEND);
            }
        }
    }

    /**
     * Insert a Record for each Request
     */
    private function insertRecord(Application $app, Database $db)
    {
        $req = new Request();
        $sql = 'INSERT INTO requests (url, method, user_agent) VALUES (?, ?, ?)';
        $params = [$app->requestedPath(), $req->method(), $req->userAgent()];
        $db->execute($sql, $params);
    }

    /**
     * Return the 20 most recent records.
     * The SELECT statement is defined in a [*.sql] file,
     * which allows for easy editing and testing outside of PHP code.
     */
    private function getRecentRecords(Database $db)
    {
        $sql = file_get_contents(__DIR__ . '/../../Models/DatabaseDemo.sql');
        $records = $db->query($sql);
        return $records;
    }
}