Update core_sqlsrv.h

This commit is contained in:
v-kaywon 2017-03-28 09:29:57 -07:00 committed by GitHub
parent 7256685a4c
commit 7c4efbcad8

View file

@ -2048,7 +2048,7 @@ namespace core {
// instead of throwing an exception, return 0 if the r=-1, stament has been executed, and has a HY010 error
// (HY010 error should not return if stmt->execute is true)
#ifndef _WIN32
if ( r == -1 && stmt->execute && strcmp( reinterpret_cast<const char*>( stmt->last_error()->sqlstate ), "HY010" ) == 0 )
if ( r == -1 && stmt->executed && strcmp( reinterpret_cast<const char*>( stmt->last_error()->sqlstate ), "HY010" ) == 0 )
return 0;
#endif // !_WIN32