Home
last modified time | relevance | path

Searched refs:fetchMode (Results 1 – 25 of 940) sorted by relevance

12345678910>>...38

/dports/finance/prestashop/prestashop/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/
H A DPDOStatement.php48 $fetchMode = $this->convertFetchMode($fetchMode);
56 return parent::setFetchMode($fetchMode);
128 $fetchMode = $this->convertFetchMode($fetchMode);
136 return parent::fetch($fetchMode);
154 $fetchMode = $this->convertFetchMode($fetchMode);
162 return parent::fetchAll($fetchMode);
210 * @param int|null $fetchMode Fetch mode
214 if ($fetchMode === null) {
223 $fetchMode
226 return $fetchMode;
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/Portability/
H A DStatement.php127 $this->defaultFetchMode = $fetchMode;
129 return $this->stmt->setFetchMode($fetchMode, $arg1, $arg2);
145 public function fetch($fetchMode = null) argument
147 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
149 $row = $this->stmt->fetch($fetchMode);
153 …!is_null($this->case) && ($fetchMode == PDO::FETCH_ASSOC || $fetchMode == PDO::FETCH_BOTH) && ($th…
162 public function fetchAll($fetchMode = null, $columnIndex = 0) argument
164 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
169 $rows = $this->stmt->fetchAll($fetchMode);
178 if ($fetchMode === PDO::FETCH_COLUMN) {
[all …]
/dports/www/elgg/elgg-3.3.23/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/
H A DPDOStatement.php54 $fetchMode = $this->convertFetchMode($fetchMode);
62 return parent::setFetchMode($fetchMode);
167 $args = [$fetchMode];
169 $args = [$fetchMode, $fetchArgument];
171 $args = [$fetchMode, $fetchArgument, $ctorArgs];
219 * @param int $fetchMode Fetch mode
221 private function convertFetchMode(int $fetchMode): int argument
223 if (! isset(self::FETCH_MODE_MAP[$fetchMode])) {
228 $fetchMode
231 return $fetchMode;
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/
H A DPDOStatement.php52 $fetchMode = $this->convertFetchMode($fetchMode);
60 return parent::setFetchMode($fetchMode);
159 $args = [$fetchMode];
161 $args = [$fetchMode, $fetchArgument];
163 $args = [$fetchMode, $fetchArgument, $ctorArgs];
211 * @param int $fetchMode Fetch mode
213 private function convertFetchMode(int $fetchMode) : int argument
215 if (! isset(self::FETCH_MODE_MAP[$fetchMode])) {
220 $fetchMode
223 return $fetchMode;
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/
H A DPDOStatement.php54 $fetchMode = $this->convertFetchMode($fetchMode);
62 return parent::setFetchMode($fetchMode);
167 $args = [$fetchMode];
169 $args = [$fetchMode, $fetchArgument];
171 $args = [$fetchMode, $fetchArgument, $ctorArgs];
219 * @param int $fetchMode Fetch mode
221 private function convertFetchMode(int $fetchMode): int argument
223 if (! isset(self::FETCH_MODE_MAP[$fetchMode])) {
228 $fetchMode
231 return $fetchMode;
[all …]
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/
H A DPDOStatement.php40 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
48 return parent::setFetchMode($fetchMode);
52 return parent::setFetchMode($fetchMode, $arg2);
55 return parent::setFetchMode($fetchMode, $arg2, $arg3);
108 return parent::fetch($fetchMode);
112 return parent::fetch($fetchMode, $cursorOrientation);
115 return parent::fetch($fetchMode, $cursorOrientation, $cursorOffset);
127 if ($fetchMode === null && $fetchArgument === null && $ctorArgs === null) {
132 return parent::fetchAll($fetchMode);
136 return parent::fetchAll($fetchMode, $fetchArgument);
[all …]
/dports/databases/pear-DoctrineDBAL/DoctrineDBAL-2.3.4/Doctrine/DBAL/Driver/OCI8/
H A DOCI8Statement.php195 $this->_defaultFetchMode = $fetchMode;
210 public function fetch($fetchMode = null) argument
212 $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
213 if ( ! isset(self::$fetchModeMap[$fetchMode])) {
223 public function fetchAll($fetchMode = null) argument
225 $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
226 if ( ! isset(self::$fetchModeMap[$fetchMode])) {
231 if (self::$fetchModeMap[$fetchMode] === OCI_BOTH) {
232 while ($row = $this->fetch($fetchMode)) {
237 if ($fetchMode == PDO::FETCH_COLUMN) {
[all …]
/dports/finance/prestashop/prestashop/vendor/doctrine/dbal/lib/Doctrine/DBAL/Portability/
H A DStatement.php105 $this->defaultFetchMode = $fetchMode;
107 return $this->stmt->setFetchMode($fetchMode, $arg1, $arg2);
123 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
125 $row = $this->stmt->fetch($fetchMode);
129 && ($fetchMode === FetchMode::ASSOCIATIVE || $fetchMode === FetchMode::MIXED)
142 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
145 $rows = $this->stmt->fetchAll($fetchMode, $fetchArgument);
147 $rows = $this->stmt->fetchAll($fetchMode);
152 && ($fetchMode === FetchMode::ASSOCIATIVE || $fetchMode === FetchMode::MIXED)
159 if ($fetchMode === FetchMode::COLUMN) {
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/
H A DPDOStatement.php40 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
48 return parent::setFetchMode($fetchMode);
52 return parent::setFetchMode($fetchMode, $arg2);
55 return parent::setFetchMode($fetchMode, $arg2, $arg3);
122 return parent::fetch($fetchMode);
126 return parent::fetch($fetchMode, $cursorOrientation);
129 return parent::fetch($fetchMode, $cursorOrientation, $cursorOffset);
141 if ($fetchMode === null && $fetchArgument === null && $ctorArgs === null) {
146 return parent::fetchAll($fetchMode);
150 return parent::fetchAll($fetchMode, $fetchArgument);
[all …]
/dports/databases/pear-DoctrineDBAL/DoctrineDBAL-2.3.4/Doctrine/DBAL/Portability/
H A DStatement.php106 $this->defaultFetchMode = $fetchMode;
107 $this->stmt->setFetchMode($fetchMode, $arg1, $arg2);
116 public function fetch($fetchMode = null) argument
118 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
120 $row = $this->stmt->fetch($fetchMode);
124 …!is_null($this->case) && ($fetchMode == PDO::FETCH_ASSOC || $fetchMode == PDO::FETCH_BOTH) && ($th…
130 public function fetchAll($fetchMode = null, $columnIndex = 0) argument
132 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
135 $rows = $this->stmt->fetchAll($fetchMode, $columnIndex);
137 $rows = $this->stmt->fetchAll($fetchMode);
[all …]
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/dbal/lib/Doctrine/DBAL/Portability/
H A DStatement.php127 $this->defaultFetchMode = $fetchMode;
129 return $this->stmt->setFetchMode($fetchMode, $arg1, $arg2);
145 public function fetch($fetchMode = null) argument
147 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
149 $row = $this->stmt->fetch($fetchMode);
153 …!is_null($this->case) && ($fetchMode == PDO::FETCH_ASSOC || $fetchMode == PDO::FETCH_BOTH) && ($th…
162 public function fetchAll($fetchMode = null, $columnIndex = 0) argument
164 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
167 $rows = $this->stmt->fetchAll($fetchMode, $columnIndex);
169 $rows = $this->stmt->fetchAll($fetchMode);
[all …]
/dports/www/elgg/elgg-3.3.23/vendor/doctrine/dbal/lib/Doctrine/DBAL/Portability/
H A DStatement.php118 $this->defaultFetchMode = $fetchMode;
120 return $this->stmt->setFetchMode($fetchMode, $arg2, $arg3);
136 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
138 $row = $this->stmt->fetch($fetchMode);
142 && ($fetchMode === FetchMode::ASSOCIATIVE || $fetchMode === FetchMode::MIXED)
155 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
158 $rows = $this->stmt->fetchAll($fetchMode, $fetchArgument);
160 $rows = $this->stmt->fetchAll($fetchMode);
165 && ($fetchMode === FetchMode::ASSOCIATIVE || $fetchMode === FetchMode::MIXED)
172 if ($fetchMode === FetchMode::COLUMN) {
[all …]
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/
H A DOCI8Statement.php225 $this->_defaultFetchMode = $fetchMode;
243 public function fetch($fetchMode = null) argument
245 $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
246 if ( ! isset(self::$fetchModeMap[$fetchMode])) {
256 public function fetchAll($fetchMode = null) argument
258 $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
259 if ( ! isset(self::$fetchModeMap[$fetchMode])) {
264 if (self::$fetchModeMap[$fetchMode] === OCI_BOTH) {
265 while ($row = $this->fetch($fetchMode)) {
270 if ($fetchMode == PDO::FETCH_COLUMN) {
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/vendor/doctrine/dbal/lib/Doctrine/DBAL/Portability/
H A DStatement.php118 $this->defaultFetchMode = $fetchMode;
120 return $this->stmt->setFetchMode($fetchMode, $arg2, $arg3);
136 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
138 $row = $this->stmt->fetch($fetchMode);
142 && ($fetchMode === FetchMode::ASSOCIATIVE || $fetchMode === FetchMode::MIXED)
155 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
158 $rows = $this->stmt->fetchAll($fetchMode, $fetchArgument);
160 $rows = $this->stmt->fetchAll($fetchMode);
165 && ($fetchMode === FetchMode::ASSOCIATIVE || $fetchMode === FetchMode::MIXED)
172 if ($fetchMode === FetchMode::COLUMN) {
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/vendor/doctrine/dbal/lib/Doctrine/DBAL/Portability/
H A DStatement.php117 $this->defaultFetchMode = $fetchMode;
119 return $this->stmt->setFetchMode($fetchMode, $arg1, $arg2);
135 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
137 $row = $this->stmt->fetch($fetchMode);
141 && ($fetchMode === FetchMode::ASSOCIATIVE || $fetchMode === FetchMode::MIXED)
154 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
157 $rows = $this->stmt->fetchAll($fetchMode, $fetchArgument);
159 $rows = $this->stmt->fetchAll($fetchMode);
164 && ($fetchMode === FetchMode::ASSOCIATIVE || $fetchMode === FetchMode::MIXED)
171 if ($fetchMode === FetchMode::COLUMN) {
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/
H A DArrayStatement.php77 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
83 $this->defaultFetchMode = $fetchMode;
101 public function fetch($fetchMode = null) argument
105 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
106 if ($fetchMode === PDO::FETCH_ASSOC) {
108 } elseif ($fetchMode === PDO::FETCH_NUM) {
110 } elseif ($fetchMode === PDO::FETCH_BOTH) {
112 } elseif ($fetchMode === PDO::FETCH_COLUMN) {
125 public function fetchAll($fetchMode = null) argument
128 while ($row = $this->fetch($fetchMode)) {
/dports/databases/pear-DoctrineDBAL/DoctrineDBAL-2.3.4/Doctrine/DBAL/Cache/
H A DArrayStatement.php50 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
56 $this->defaultFetchMode = $fetchMode;
65 public function fetch($fetchMode = null) argument
69 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
70 if ($fetchMode === PDO::FETCH_ASSOC) {
72 } else if ($fetchMode === PDO::FETCH_NUM) {
74 } else if ($fetchMode === PDO::FETCH_BOTH) {
76 } else if ($fetchMode === PDO::FETCH_COLUMN) {
85 public function fetchAll($fetchMode = null) argument
88 while ($row = $this->fetch($fetchMode)) {
H A DResultCacheStatement.php135 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
137 $this->defaultFetchMode = $fetchMode;
150 … * @param integer $fetchMode Controls how the next row will be returned to the caller.
156 public function fetch($fetchMode = null) argument
166 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
168 if ($fetchMode == PDO::FETCH_ASSOC) {
170 } else if ($fetchMode == PDO::FETCH_NUM) {
172 } else if ($fetchMode == PDO::FETCH_BOTH) {
174 } else if ($fetchMode == PDO::FETCH_COLUMN) {
193 public function fetchAll($fetchMode = null) argument
[all …]
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/
H A DArrayStatement.php77 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
83 $this->defaultFetchMode = $fetchMode;
101 public function fetch($fetchMode = null) argument
105 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
106 if ($fetchMode === PDO::FETCH_ASSOC) {
108 } elseif ($fetchMode === PDO::FETCH_NUM) {
110 } elseif ($fetchMode === PDO::FETCH_BOTH) {
112 } elseif ($fetchMode === PDO::FETCH_COLUMN) {
125 public function fetchAll($fetchMode = null) argument
128 while ($row = $this->fetch($fetchMode)) {
/dports/finance/prestashop/prestashop/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/
H A DOCI8Statement.php385 $this->_defaultFetchMode = $fetchMode;
409 $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
411 if ($fetchMode === FetchMode::COLUMN) {
415 if ($fetchMode === FetchMode::STANDARD_OBJECT) {
419 if (! isset(self::$fetchModeMap[$fetchMode])) {
434 $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
439 while ($row = $this->fetch($fetchMode)) {
446 if (! isset(self::$fetchModeMap[$fetchMode])) {
451 while ($row = $this->fetch($fetchMode)) {
457 if ($fetchMode === FetchMode::COLUMN) {
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/
H A DOCI8Statement.php258 $this->_defaultFetchMode = $fetchMode;
276 public function fetch($fetchMode = null) argument
284 $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
285 if ( ! isset(self::$fetchModeMap[$fetchMode])) {
295 public function fetchAll($fetchMode = null) argument
297 $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
298 if ( ! isset(self::$fetchModeMap[$fetchMode])) {
303 if (self::$fetchModeMap[$fetchMode] === OCI_BOTH) {
304 while ($row = $this->fetch($fetchMode)) {
309 if ($fetchMode == PDO::FETCH_COLUMN) {
[all …]
/dports/finance/prestashop/prestashop/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/
H A DArrayStatement.php62 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
68 $this->defaultFetchMode = $fetchMode;
86 …public function fetch($fetchMode = null, $cursorOrientation = PDO::FETCH_ORI_NEXT, $cursorOffset =… argument
93 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
95 if ($fetchMode === FetchMode::ASSOCIATIVE) {
99 if ($fetchMode === FetchMode::NUMERIC) {
103 if ($fetchMode === FetchMode::MIXED) {
107 if ($fetchMode === FetchMode::COLUMN) {
117 public function fetchAll($fetchMode = null, $fetchArgument = null, $ctorArgs = null) argument
120 while ($row = $this->fetch($fetchMode)) {
/dports/www/elgg/elgg-3.3.23/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/
H A DArrayStatement.php65 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
71 $this->defaultFetchMode = $fetchMode;
89 …public function fetch($fetchMode = null, $cursorOrientation = PDO::FETCH_ORI_NEXT, $cursorOffset =… argument
96 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
98 if ($fetchMode === FetchMode::ASSOCIATIVE) {
102 if ($fetchMode === FetchMode::NUMERIC) {
106 if ($fetchMode === FetchMode::MIXED) {
110 if ($fetchMode === FetchMode::COLUMN) {
120 public function fetchAll($fetchMode = null, $fetchArgument = null, $ctorArgs = null) argument
123 while ($row = $this->fetch($fetchMode)) {
/dports/www/typo3-9/typo3_src-9.5.31/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/
H A DArrayStatement.php62 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
68 $this->defaultFetchMode = $fetchMode;
86 …public function fetch($fetchMode = null, $cursorOrientation = PDO::FETCH_ORI_NEXT, $cursorOffset =… argument
93 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
95 if ($fetchMode === FetchMode::ASSOCIATIVE) {
99 if ($fetchMode === FetchMode::NUMERIC) {
103 if ($fetchMode === FetchMode::MIXED) {
107 if ($fetchMode === FetchMode::COLUMN) {
117 public function fetchAll($fetchMode = null, $fetchArgument = null, $ctorArgs = null) argument
120 while ($row = $this->fetch($fetchMode)) {
/dports/www/typo3-10/typo3_src-10.4.25/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/
H A DArrayStatement.php65 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null) argument
71 $this->defaultFetchMode = $fetchMode;
89 …public function fetch($fetchMode = null, $cursorOrientation = PDO::FETCH_ORI_NEXT, $cursorOffset =… argument
96 $fetchMode = $fetchMode ?: $this->defaultFetchMode;
98 if ($fetchMode === FetchMode::ASSOCIATIVE) {
102 if ($fetchMode === FetchMode::NUMERIC) {
106 if ($fetchMode === FetchMode::MIXED) {
110 if ($fetchMode === FetchMode::COLUMN) {
120 public function fetchAll($fetchMode = null, $fetchArgument = null, $ctorArgs = null) argument
123 while ($row = $this->fetch($fetchMode)) {

12345678910>>...38