__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Part of the Joomla Framework Database Package
*
* @copyright Copyright (C) 2005 - 2021 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
namespace Joomla\Database;
/**
* Interface defining a query statement.
*
* This interface is a partial standalone implementation of PDOStatement.
*
* @since 2.0.0
*/
interface StatementInterface
{
/**
* Binds a parameter to the specified variable name.
*
* @param string|integer $parameter Parameter identifier. For a prepared statement using named placeholders, this will be a parameter
* name of the form `:name`. For a prepared statement using question mark placeholders, this will be
* the 1-indexed position of the parameter.
* @param mixed $variable Name of the PHP variable to bind to the SQL statement parameter.
* @param string $dataType Constant corresponding to a SQL datatype, this should be the processed type from the QueryInterface.
* @param ?integer $length The length of the variable. Usually required for OUTPUT parameters.
* @param ?array $driverOptions Optional driver options to be used.
*
* @return boolean
*
* @since 2.0.0
*/
public function bindParam($parameter, &$variable, string $dataType = ParameterType::STRING, ?int $length = null, ?array $driverOptions = null);
/**
* Closes the cursor, enabling the statement to be executed again.
*
* @return void
*
* @since 2.0.0
*/
public function closeCursor(): void;
/**
* Fetches the SQLSTATE associated with the last operation on the statement handle.
*
* @return string
*
* @since 2.0.0
*/
public function errorCode();
/**
* Fetches extended error information associated with the last operation on the statement handle.
*
* @return array
*
* @since 2.0.0
*/
public function errorInfo();
/**
* Executes a prepared statement
*
* @param array|null $parameters An array of values with as many elements as there are bound parameters in the SQL statement being executed.
*
* @return boolean
*
* @since 2.0.0
*/
public function execute(?array $parameters = null);
/**
* Fetches the next row from a result set
*
* @param integer|null $fetchStyle Controls how the next row will be returned to the caller. This value must be one of the
* FetchMode constants, defaulting to value of FetchMode::MIXED.
* @param integer $cursorOrientation For a StatementInterface object representing a scrollable cursor, this value determines which row
* will be returned to the caller. This value must be one of the FetchOrientation constants,
* defaulting to FetchOrientation::NEXT.
* @param integer $cursorOffset For a StatementInterface object representing a scrollable cursor for which the cursorOrientation
* parameter is set to FetchOrientation::ABS, this value specifies the absolute number of the row in
* the result set that shall be fetched. For a StatementInterface object representing a scrollable
* cursor for which the cursorOrientation parameter is set to FetchOrientation::REL, this value
* specifies the row to fetch relative to the cursor position before `fetch()` was called.
*
* @return mixed The return value of this function on success depends on the fetch type. In all cases, boolean false is returned on failure.
*
* @since 2.0.0
*/
public function fetch(?int $fetchStyle = null, int $cursorOrientation = FetchOrientation::NEXT, int $cursorOffset = 0);
/**
* Returns the number of rows affected by the last SQL statement.
*
* @return integer
*
* @since 2.0.0
*/
public function rowCount(): int;
/**
* Sets the fetch mode to use while iterating this statement.
*
* @param integer $fetchMode The fetch mode, must be one of the FetchMode constants.
* @param mixed ...$args Optional mode-specific arguments.
*
* @return void
*
* @since 2.0.0
*/
public function setFetchMode(int $fetchMode, ...$args): void;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Command | Folder | 0775 |
|
|
| Event | Folder | 0775 |
|
|
| Exception | Folder | 0775 |
|
|
| Monitor | Folder | 0775 |
|
|
| Mysql | Folder | 0775 |
|
|
| Mysqli | Folder | 0775 |
|
|
| Pdo | Folder | 0775 |
|
|
| Pgsql | Folder | 0775 |
|
|
| Query | Folder | 0775 |
|
|
| Service | Folder | 0775 |
|
|
| Sqlazure | Folder | 0775 |
|
|
| Sqlite | Folder | 0775 |
|
|
| Sqlsrv | Folder | 0775 |
|
|
| DatabaseAwareInterface.php | File | 599 B | 0664 |
|
| DatabaseAwareTrait.php | File | 1.27 KB | 0664 |
|
| DatabaseDriver.php | File | 55.59 KB | 0664 |
|
| DatabaseEvents.php | File | 1.13 KB | 0664 |
|
| DatabaseExporter.php | File | 7.2 KB | 0664 |
|
| DatabaseFactory.php | File | 6.36 KB | 0664 |
|
| DatabaseImporter.php | File | 9.47 KB | 0664 |
|
| DatabaseInterface.php | File | 17.59 KB | 0664 |
|
| DatabaseIterator.php | File | 5.55 KB | 0664 |
|
| DatabaseQuery.php | File | 69.3 KB | 0664 |
|
| FetchMode.php | File | 2.42 KB | 0664 |
|
| FetchOrientation.php | File | 1.73 KB | 0664 |
|
| ParameterType.php | File | 1.2 KB | 0664 |
|
| QueryInterface.php | File | 22.09 KB | 0664 |
|
| QueryMonitorInterface.php | File | 960 B | 0664 |
|
| StatementInterface.php | File | 4.66 KB | 0664 |
|
| UTF8MB4SupportInterface.php | File | 1.05 KB | 0664 |
|