Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/theseer/../egulias/.././unicodeveloper/.././nunomaduro/../mews/../maennchen/../theseer/../monolog/../phpoffice/../maennchen/../ramsey/../theseer/../egulias/./../voku/../tijsverkoyen/../egulias/../doctrine/./dbal/src
الملفات الموجودة في هذا الـ Path:
.
..
ArrayParameterType.php
ArrayParameters
Cache
ColumnCase.php
Configuration.php
Connection.php
ConnectionException.php
Connections
Driver
Driver.php
DriverManager.php
Event
Events.php
Exception
Exception.php
ExpandArrayParameters.php
FetchMode.php
Id
LockMode.php
Logging
ParameterType.php
Platforms
Portability
Query
Query.php
Result.php
SQL
Schema
Statement.php
Tools
TransactionIsolationLevel.php
Types
VersionAwarePlatformDriver.php

مشاهدة ملف: FetchMode.php

<?php

namespace Doctrine\DBAL;

/**
 * Legacy Class that keeps BC for using the legacy APIs fetch()/fetchAll().
 *
 * @deprecated Use the dedicated fetch*() methods for the desired fetch mode instead.
 */
class FetchMode
{
    /** @link PDO::FETCH_ASSOC */
    public const ASSOCIATIVE = 2;

    /** @link PDO::FETCH_NUM */
    public const NUMERIC = 3;

    /** @link PDO::FETCH_COLUMN */
    public const COLUMN = 7;
}