1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/odbc/tests/bug73725.phpt
Máté Kocsis 8726ae0601 Improve and fix ext/odbc tests
Some test failures are fixed, parallelization is enabled, section order is fixed.
2023-08-23 21:20:41 +02:00

55 lines
914 B
PHP

--TEST--
Bug #73725 Unable to retrieve value of varchar(max) type
--EXTENSIONS--
odbc
--SKIPIF--
<?php include 'skipif.inc'; ?>
--FILE--
<?php
include __DIR__ . "/config.inc";
$conn = odbc_connect($dsn, $user, $pass);
odbc_do($conn, "CREATE TABLE bug73725(i int, txt varchar(max), k int)");
odbc_do($conn, "INSERT INTO bug73725 VALUES(101,'Any text', 33), (102,'Lorem ipsum dolor', 34)");
$rc = odbc_do($conn, "SELECT i, txt, k FROM bug73725");
$r = odbc_fetch_array($rc);
var_dump($r);
$r = odbc_fetch_array($rc);
var_dump($r);
?>
--CLEAN--
<?php
include 'config.inc';
$conn = odbc_connect($dsn, $user, $pass);
odbc_exec($conn, 'DROP TABLE bug73725');
odbc_close($conn);
?>
--EXPECT--
array(3) {
["i"]=>
string(3) "101"
["txt"]=>
string(8) "Any text"
["k"]=>
string(2) "33"
}
array(3) {
["i"]=>
string(3) "102"
["txt"]=>
string(17) "Lorem ipsum dolor"
["k"]=>
string(2) "34"
}