From f2381ba7b26fe4c00ed7848c79e5e08481d1a1ba Mon Sep 17 00:00:00 2001 From: v-kaywon Date: Mon, 11 Sep 2017 13:06:20 -0700 Subject: [PATCH] change comment --- source/shared/core_stmt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shared/core_stmt.cpp b/source/shared/core_stmt.cpp index 79913e6a..6db8b16c 100644 --- a/source/shared/core_stmt.cpp +++ b/source/shared/core_stmt.cpp @@ -559,7 +559,7 @@ void core_sqlsrv_bind_param( _Inout_ sqlsrv_stmt* stmt, _In_ SQLUSMALLINT param_ // avoid this silent truncation, we set the column_size to be "MAX" size for // string types. This will guarantee that there is no silent truncation for // output parameters. - // if column encryption is enabled, do not set the length to unlimited since SQLDescribe paramter already derive the length for us + // if column encryption is enabled, at this point the correct column size has been set by SQLDescribeParam if( direction == SQL_PARAM_OUTPUT && !stmt->conn->ce_option.enabled ) { switch( sql_type ) {