Conéctese a una base de datos y ejecute sentencias SQL

Documentación API
  • Rojo
  • Verde
  • Azul
  • Amarillo
ID URL Método Tipo de Dispositivo Tipo de Sistema Operativo OS Navegador Agente de usuario Fecha solicitada
87 /es/examples/database-demo GET Bot Bot Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) 2024-05-07 08:30:36
86 /pt-BR/examples/database-demo GET Desktop Mac Mac OS X Chrome Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68 2024-05-07 01:33:13
85 /en/examples/database-demo GET Desktop Mac Mac OS X Chrome Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68 2024-05-07 01:33:09
84 /fr/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com) 2024-05-06 17:47:36
83 /es/examples/database-demo GET Desktop Mac Mac OS X Safari Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) 2024-05-06 09:19:47
82 /fr/examples/database-demo GET Desktop Mac Mac OS X Safari Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) 2024-05-06 09:19:39
81 /ar/examples/database-demo GET Desktop Mac Mac OS X Safari Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) 2024-05-06 09:19:31
80 /en/examples/database-demo GET Desktop Mac Mac OS X Safari Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) 2024-05-06 09:19:23
79 /pt-BR/examples/database-demo GET Desktop Mac Mac OS X Safari Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) 2024-05-06 09:16:23
78 /zh-CN/examples/database-demo GET Desktop Mac Mac OS X Safari Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) 2024-05-06 09:16:15
77 /es/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-05-06 01:33:47
76 /zh-CN/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-05-06 01:00:48
75 /en/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-05-06 00:25:53
74 /pt-BR/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-05-05 23:00:51
73 /ar/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-05-05 22:36:09
72 /fr/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) 2024-05-05 22:24:21
71 /en/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com) 2024-05-05 19:26:03
70 /ar/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html) 2024-05-05 17:51:13
69 /ar/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/) 2024-05-05 11:12:40
68 /ar/examples/database-demo GET Bot Bot Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com) 2024-05-05 02:11:58

Descripción general del código de base de datos

// Conectarse a una base de datos
$db = new \FastSitePHP\Data\Database($dsn, $user, $password);

// Consulta para registros múltiples
// Devuelve una matriz de registros (matriz asociativa para cada registro).
$sql = 'SELECT * FROM pages';
$records = $db->query($sql);

// Consulta para un registro. Devuelve una matriz asociativa o [nulo] si
// no se encuentra. Tanto [query()] como [queryOne()] admiten parámetros
// opcionales al realizar consultas.
$sql = 'SELECT * FROM pages WHERE id = ?';
$params = [1];
$record = $db->queryOne($sql, $params);

// Utilice [execute()] para INSERT, UPDATE, DELETE, CREATE y otras transacciones.
// Además de usar [?] También puede usar parámetros con nombre en el formato
// de ':nombre'. Los parámetros con nombre pueden hacer que el código sea más
// fácil de leer.
$sql = 'INSERT INTO pages (title, content)';
$sql .= ' VALUES (:title, :content)';
$params = [
    'title'   => 'Database Demo',
    'content' => '<h1>Database Demo<h1>',
];
$rows_affected = $db->execute($sql, $params);

// Se pueden encontrar muchos ejemplos adicionales en la página de
// referencia 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;
    }
}