#include "stdafx.h" #include #include namespace mssql { bool UnbindOperation::TryInvokeOdbc() { if (_statement == nullptr) return false; return true; } Local UnbindOperation::CreateCompletionArg() { const auto a = _statement->unbind_params(); const auto ret = a->Clone(); return ret; } }