msdasql: Return S_OK in ICommandPrepare Un/Prepare.

These functions are to attempt to optimize the query that is about
to be run.  We can safely ignore these calls.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alistair Leslie-Hughes 2021-11-17 21:23:24 +11:00 committed by Alexandre Julliard
parent 820a866f0d
commit 422caf2161
1 changed files with 4 additions and 4 deletions

View File

@ -1096,15 +1096,15 @@ static ULONG WINAPI commandprepare_Release(ICommandPrepare *iface)
static HRESULT WINAPI commandprepare_Prepare(ICommandPrepare *iface, ULONG runs)
{
struct command *command = impl_from_ICommandPrepare( iface );
FIXME("%p, %u\n", command, runs);
return E_NOTIMPL;
TRACE("%p, %u\n", command, runs);
return S_OK;
}
static HRESULT WINAPI commandprepare_Unprepare(ICommandPrepare *iface)
{
struct command *command = impl_from_ICommandPrepare( iface );
FIXME("%p\n", command);
return E_NOTIMPL;
TRACE("%p\n", command);
return S_OK;
}
struct ICommandPrepareVtbl commandprepareVtbl =