mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
86 lines
1.9 KiB
PHP
Executable File
86 lines
1.9 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\DataStorage\Database\Schema\Grammar
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\DataStorage\Database\Schema\Grammar;
|
|
|
|
use phpOMS\DataStorage\Database\Query\Builder;
|
|
use phpOMS\DataStorage\Database\Schema\Builder as SchemaBuilder;
|
|
|
|
/**
|
|
* Database query grammar.
|
|
*
|
|
* @package phpOMS\DataStorage\Database\Schema\Grammar
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
class SQLiteGrammar extends Grammar
|
|
{
|
|
/**
|
|
* System identifier.
|
|
*
|
|
* @var string
|
|
* @since 1.0.0
|
|
*/
|
|
public string $systemIdentifierStart = '`';
|
|
|
|
/**
|
|
* System identifier.
|
|
*
|
|
* @var string
|
|
* @since 1.0.0
|
|
*/
|
|
public string $systemIdentifierEnd = '`';
|
|
|
|
/**
|
|
* Compile from.
|
|
*
|
|
* @param SchemaBuilder $query Builder
|
|
* @param array $table Tables
|
|
*
|
|
* @return string
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
protected function compileSelectTables(SchemaBuilder $query, array $table) : string
|
|
{
|
|
$builder = new Builder($query->getConnection());
|
|
$builder->select('name')
|
|
->from('sqlite_master')
|
|
->where('type', '=', 'table');
|
|
|
|
return \rtrim($builder->toSql(), ';');
|
|
}
|
|
|
|
/**
|
|
* Compile from.
|
|
*
|
|
* @param SchemaBuilder $query Builder
|
|
* @param string $table Tables
|
|
*
|
|
* @return string
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
protected function compileSelectFields(SchemaBuilder $query, string $table) : string
|
|
{
|
|
$builder = new Builder($query->getConnection());
|
|
$builder->select('*')
|
|
->from('pragma_table_info(\'' . $table . '\')')
|
|
->where('pragma_table_info(\'' . $table . '\')', '=', $query->getConnection()->getDatabase());
|
|
|
|
return \rtrim($builder->toSql(), ';');
|
|
}
|
|
}
|