You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
331 B
16 lines
331 B
<?php
|
|
|
|
namespace Doctrine\DBAL;
|
|
|
|
/**
|
|
* Legacy Class that keeps BC for using the legacy APIs fetch()/fetchAll().
|
|
*/
|
|
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;
|
|
}
|
|
|