--TEST-- Test insert various numeric data types and fetch them back as strings --FILE-- getMessage(); } echo "\nDone\n"; ?> --EXPECT--  Test begins... Insert integers without PHP type 1, 2 11, 12 21, 22 31, 32 41, 42 Insert integers as SQLSRV_PHPTYPE_INT 1, 2 11, 12 21, 22 31, 32 41, 42 Insert floats with direction specified 1.0, 2.0 11.0, 12.0 21.0, 22.0 31.0, 32.0 41.0, 42.0 Insert floats without direction 1.0, 2.0 11.0, 12.0 21.0, 22.0 31.0, 32.0 41.0, 42.0 Done