From 3033a26c51d8806ce94447dcfddb4afdda0e9c23 Mon Sep 17 00:00:00 2001 From: Jenny Tam Date: Wed, 25 Apr 2018 07:56:58 -0700 Subject: [PATCH] Added a comment to address the issue --- source/pdo_sqlsrv/pdo_stmt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/pdo_sqlsrv/pdo_stmt.cpp b/source/pdo_sqlsrv/pdo_stmt.cpp index 6bf20bb7..fd65b9ea 100644 --- a/source/pdo_sqlsrv/pdo_stmt.cpp +++ b/source/pdo_sqlsrv/pdo_stmt.cpp @@ -1180,6 +1180,7 @@ int pdo_sqlsrv_stmt_param_hook( _Inout_ pdo_stmt_t *stmt, } // if the parameter is output or input/output, translate the type between the PDO::PARAM_* constant // and the SQLSRV_PHPTYPE_* constant + // vso 2829: derive the pdo_type for input/output parameter as well int pdo_type = (direction == SQL_PARAM_OUTPUT) ? param->param_type : param->param_type & ~PDO_PARAM_INPUT_OUTPUT; SQLSRV_PHPTYPE php_out_type = SQLSRV_PHPTYPE_INVALID; switch (pdo_type) {