Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 1 |
lars |
1 |
--TEST--
|
|
|
2 |
DB_driver::fetchmode object
|
|
|
3 |
--INI--
|
|
|
4 |
error_reporting = 2047
|
|
|
5 |
--SKIPIF--
|
|
|
6 |
<?php require_once dirname(__FILE__) . '/skipif.inc'; ?>
|
|
|
7 |
--FILE--
|
|
|
8 |
<?php
|
|
|
9 |
require_once dirname(__FILE__) . '/mktable.inc';
|
|
|
10 |
require_once dirname(__FILE__) . '/../fetchmode_object.inc';
|
|
|
11 |
?>
|
|
|
12 |
--EXPECT--
|
|
|
13 |
--- fetch with param DB_FETCHMODE_OBJECT ---
|
|
|
14 |
stdclass -> a b cc d
|
|
|
15 |
stdclass -> a b cc d
|
|
|
16 |
--- fetch with default fetchmode DB_FETCHMODE_OBJECT ---
|
|
|
17 |
stdclass -> a b cc d
|
|
|
18 |
stdclass -> a b cc d
|
|
|
19 |
--- fetch with default fetchmode DB_FETCHMODE_OBJECT and class DB_row ---
|
|
|
20 |
db_row -> a b cc d
|
|
|
21 |
db_row -> a b cc d
|
|
|
22 |
--- fetch with default fetchmode DB_FETCHMODE_OBJECT with no class then DB_row ---
|
|
|
23 |
stdclass -> a b cc d
|
|
|
24 |
db_row -> a b cc d
|