PHP 8.2.32
Preview: RawSql.php Size: 1.04 KB
/home/ecopackply/www/system/Database/RawSql.php

<?php

declare(strict_types=1);

/**
 * This file is part of CodeIgniter 4 framework.
 *
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace CodeIgniter\Database;

use Stringable;

/**
 * @see \CodeIgniter\Database\RawSqlTest
 */
class RawSql implements Stringable
{
    /**
     * @var string Raw SQL string
     */
    private string $string;

    public function __construct(string $sqlString)
    {
        $this->string = $sqlString;
    }

    public function __toString(): string
    {
        return $this->string;
    }

    /**
     * Create new instance with new SQL string
     */
    public function with(string $newSqlString): self
    {
        $new         = clone $this;
        $new->string = $newSqlString;

        return $new;
    }

    /**
     * Returns unique id for binding key
     */
    public function getBindingKey(): string
    {
        return 'RawSql' . spl_object_id($this);
    }
}

Directory Contents

Dirs: 6 × Files: 18

Name Size Perms Modified Actions
- drwxr-xr-x 2026-01-27 08:07:40
Edit Download
MySQLi DIR
- drwxr-xr-x 2026-01-27 08:07:40
Edit Download
OCI8 DIR
- drwxr-xr-x 2026-01-27 08:07:40
Edit Download
Postgre DIR
- drwxr-xr-x 2026-01-27 08:07:40
Edit Download
SQLite3 DIR
- drwxr-xr-x 2026-01-27 08:07:40
Edit Download
SQLSRV DIR
- drwxr-xr-x 2026-01-27 08:07:40
Edit Download
100.69 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
51.19 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
6.87 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
13.05 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
8.29 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
3.90 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
4.11 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
5.36 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
36.37 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
1.47 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
22.47 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
1.44 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
10.36 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
2.26 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
1.04 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
4.59 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
4.20 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download
3.16 KB lrw-r--r-- 2026-01-27 08:07:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).