Skip to content

Commit

Permalink
fix bigint input in sqlsrv_bigint_outparam.phpt
Browse files Browse the repository at this point in the history
  • Loading branch information
yukiwongky committed Oct 16, 2017
1 parent 83ca7b4 commit e190bca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/sqlsrv/sqlsrv_bigint_outparam.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $spSql = "CREATE PROCEDURE $spname (@c1_bigint bigint OUTPUT) AS
sqlsrv_query( $conn, $spSql );

// Insert a large bigint
AE\insertRow($conn, $tbname, array("c1_bigint" => 922,337,203,685,479,936));
AE\insertRow($conn, $tbname, array("c1_bigint" => 922337203685479936));

// Call stored procedure with SQLSRV_PARAM_OUT
$outSql = "{CALL $spname (?)}";
Expand Down

0 comments on commit e190bca

Please sign in to comment.