--TEST-- PDO_Firebird: Feature 72583 Fetch integers as php integers not as strings --SKIPIF-- --FILE-- exec('drop table atable'); $C->exec('create table atable (aint integer, asmi smallint)'); $C->exec('insert into atable values (1, -1)'); $S = $C->prepare('select aint, asmi from atable'); $S->execute(); $D = $S->fetch(PDO::FETCH_NUM); echo gettype($D[0])."\n".gettype($D[1]); unset($S); unset($C); ?> --EXPECT-- integer integer