2019-12-06 14:54:18 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Hans Leidekker for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#define COBJMACROS
|
2021-02-17 10:17:17 +01:00
|
|
|
#define DBINITCONSTANTS
|
2020-05-28 15:13:40 +02:00
|
|
|
#include "initguid.h"
|
|
|
|
#include "ocidl.h"
|
2019-12-06 14:54:18 +01:00
|
|
|
#include "objbase.h"
|
2020-10-21 11:47:14 +02:00
|
|
|
#include "msdasc.h"
|
2020-06-01 13:42:18 +02:00
|
|
|
#include "olectl.h"
|
2019-12-06 14:54:18 +01:00
|
|
|
#include "msado15_backcompat.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/heap.h"
|
|
|
|
|
|
|
|
#include "msado15_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msado15);
|
|
|
|
|
2020-06-01 13:42:17 +02:00
|
|
|
struct connection;
|
|
|
|
|
|
|
|
struct connection_point
|
|
|
|
{
|
|
|
|
IConnectionPoint IConnectionPoint_iface;
|
|
|
|
struct connection *conn;
|
|
|
|
const IID *riid;
|
2020-06-17 14:36:15 +02:00
|
|
|
IUnknown **sinks;
|
|
|
|
ULONG sinks_size;
|
2020-06-01 13:42:17 +02:00
|
|
|
};
|
|
|
|
|
2019-12-06 14:54:18 +01:00
|
|
|
struct connection
|
|
|
|
{
|
2020-05-28 15:13:40 +02:00
|
|
|
_Connection Connection_iface;
|
|
|
|
ISupportErrorInfo ISupportErrorInfo_iface;
|
|
|
|
IConnectionPointContainer IConnectionPointContainer_iface;
|
2021-01-15 08:22:14 +01:00
|
|
|
ADOConnectionConstruction15 ADOConnectionConstruction15_iface;
|
2020-05-28 15:13:40 +02:00
|
|
|
LONG refs;
|
|
|
|
ObjectStateEnum state;
|
|
|
|
LONG timeout;
|
|
|
|
WCHAR *datasource;
|
2020-10-08 14:00:35 +02:00
|
|
|
WCHAR *provider;
|
2020-10-08 14:00:36 +02:00
|
|
|
ConnectModeEnum mode;
|
2020-10-09 09:57:14 +02:00
|
|
|
CursorLocationEnum location;
|
2020-10-21 11:47:14 +02:00
|
|
|
IUnknown *session;
|
2020-06-01 13:42:17 +02:00
|
|
|
struct connection_point cp_connev;
|
2019-12-06 14:54:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct connection *impl_from_Connection( _Connection *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD( iface, struct connection, Connection_iface );
|
|
|
|
}
|
|
|
|
|
2019-12-12 16:42:05 +01:00
|
|
|
static inline struct connection *impl_from_ISupportErrorInfo( ISupportErrorInfo *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD( iface, struct connection, ISupportErrorInfo_iface );
|
|
|
|
}
|
|
|
|
|
2020-05-28 15:13:40 +02:00
|
|
|
static inline struct connection *impl_from_IConnectionPointContainer( IConnectionPointContainer *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD( iface, struct connection, IConnectionPointContainer_iface );
|
|
|
|
}
|
|
|
|
|
2021-01-15 08:22:14 +01:00
|
|
|
static inline struct connection *impl_from_ADOConnectionConstruction15( ADOConnectionConstruction15 *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD( iface, struct connection, ADOConnectionConstruction15_iface );
|
|
|
|
}
|
|
|
|
|
2020-06-01 13:42:17 +02:00
|
|
|
static inline struct connection_point *impl_from_IConnectionPoint( IConnectionPoint *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD( iface, struct connection_point, IConnectionPoint_iface );
|
|
|
|
}
|
|
|
|
|
2019-12-06 14:54:18 +01:00
|
|
|
static ULONG WINAPI connection_AddRef( _Connection *iface )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
return InterlockedIncrement( &connection->refs );
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI connection_Release( _Connection *iface )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
LONG refs = InterlockedDecrement( &connection->refs );
|
2020-06-17 14:36:15 +02:00
|
|
|
ULONG i;
|
2019-12-06 14:54:18 +01:00
|
|
|
if (!refs)
|
|
|
|
{
|
|
|
|
TRACE( "destroying %p\n", connection );
|
2020-06-17 14:36:15 +02:00
|
|
|
for (i = 0; i < connection->cp_connev.sinks_size; ++i)
|
|
|
|
{
|
|
|
|
if (connection->cp_connev.sinks[i])
|
|
|
|
IUnknown_Release( connection->cp_connev.sinks[i] );
|
|
|
|
}
|
2020-10-21 11:47:14 +02:00
|
|
|
if (connection->session) IUnknown_Release( connection->session );
|
2020-06-17 14:36:15 +02:00
|
|
|
heap_free( connection->cp_connev.sinks );
|
2020-10-08 14:00:35 +02:00
|
|
|
heap_free( connection->provider );
|
2020-01-28 11:36:03 +01:00
|
|
|
heap_free( connection->datasource );
|
2019-12-06 14:54:18 +01:00
|
|
|
heap_free( connection );
|
|
|
|
}
|
|
|
|
return refs;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_QueryInterface( _Connection *iface, REFIID riid, void **obj )
|
|
|
|
{
|
2019-12-12 16:42:05 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
TRACE( "%p, %s, %p\n", connection, debugstr_guid(riid), obj );
|
2019-12-06 14:54:18 +01:00
|
|
|
|
2020-06-07 15:51:19 +02:00
|
|
|
*obj = NULL;
|
|
|
|
|
2019-12-06 14:54:18 +01:00
|
|
|
if (IsEqualGUID( riid, &IID__Connection ) || IsEqualGUID( riid, &IID_IDispatch ) ||
|
|
|
|
IsEqualGUID( riid, &IID_IUnknown ))
|
|
|
|
{
|
|
|
|
*obj = iface;
|
|
|
|
}
|
2019-12-12 16:42:05 +01:00
|
|
|
else if(IsEqualGUID( riid, &IID_ISupportErrorInfo ))
|
|
|
|
{
|
|
|
|
*obj = &connection->ISupportErrorInfo_iface;
|
|
|
|
}
|
2020-05-28 15:13:40 +02:00
|
|
|
else if (IsEqualGUID( riid, &IID_IConnectionPointContainer ))
|
|
|
|
{
|
|
|
|
*obj = &connection->IConnectionPointContainer_iface;
|
|
|
|
}
|
2021-01-15 08:22:14 +01:00
|
|
|
else if (IsEqualGUID( riid, &IID_ADOConnectionConstruction15 ))
|
|
|
|
{
|
|
|
|
*obj = &connection->ADOConnectionConstruction15_iface;
|
|
|
|
}
|
2020-06-07 15:51:19 +02:00
|
|
|
else if (IsEqualGUID( riid, &IID_IRunnableObject ))
|
|
|
|
{
|
|
|
|
TRACE("IID_IRunnableObject not supported returning NULL\n");
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
2019-12-06 14:54:18 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
connection_AddRef( iface );
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_GetTypeInfoCount( _Connection *iface, UINT *count )
|
|
|
|
{
|
2021-02-26 09:02:21 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
TRACE( "%p, %p\n", connection, count );
|
|
|
|
*count = 1;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_GetTypeInfo( _Connection *iface, UINT index, LCID lcid, ITypeInfo **info )
|
|
|
|
{
|
2021-02-26 09:02:21 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
TRACE( "%p, %u, %u, %p\n", connection, index, lcid, info );
|
|
|
|
return get_typeinfo(Connection_tid, info);
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_GetIDsOfNames( _Connection *iface, REFIID riid, LPOLESTR *names, UINT count,
|
|
|
|
LCID lcid, DISPID *dispid )
|
|
|
|
{
|
2021-02-26 09:02:21 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
HRESULT hr;
|
|
|
|
ITypeInfo *typeinfo;
|
|
|
|
|
|
|
|
TRACE( "%p, %s, %p, %u, %u, %p\n", connection, debugstr_guid(riid), names, count, lcid, dispid );
|
|
|
|
|
|
|
|
hr = get_typeinfo(Connection_tid, &typeinfo);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = ITypeInfo_GetIDsOfNames(typeinfo, names, count, dispid);
|
|
|
|
ITypeInfo_Release(typeinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_Invoke( _Connection *iface, DISPID member, REFIID riid, LCID lcid, WORD flags,
|
|
|
|
DISPPARAMS *params, VARIANT *result, EXCEPINFO *excep_info, UINT *arg_err )
|
|
|
|
{
|
2021-02-26 09:02:21 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
HRESULT hr;
|
|
|
|
ITypeInfo *typeinfo;
|
|
|
|
|
|
|
|
TRACE( "%p, %d, %s, %d, %d, %p, %p, %p, %p\n", connection, member, debugstr_guid(riid), lcid, flags,
|
|
|
|
params, result, excep_info, arg_err );
|
|
|
|
|
|
|
|
hr = get_typeinfo(Connection_tid, &typeinfo);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = ITypeInfo_Invoke(typeinfo, &connection->Connection_iface, member, flags, params,
|
|
|
|
result, excep_info, arg_err);
|
|
|
|
ITypeInfo_Release(typeinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_Properties( _Connection *iface, Properties **obj )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %p\n", iface, obj );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_ConnectionString( _Connection *iface, BSTR *str )
|
|
|
|
{
|
2020-01-28 11:36:03 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
BSTR source = NULL;
|
|
|
|
|
|
|
|
TRACE( "%p, %p\n", connection, str );
|
|
|
|
|
|
|
|
if (connection->datasource && !(source = SysAllocString( connection->datasource ))) return E_OUTOFMEMORY;
|
|
|
|
*str = source;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_put_ConnectionString( _Connection *iface, BSTR str )
|
|
|
|
{
|
2020-01-28 11:36:03 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
WCHAR *source = NULL;
|
|
|
|
|
2020-10-21 11:47:13 +02:00
|
|
|
TRACE( "%p, %s\n", connection, debugstr_w( str && !wcsstr( str, L"Password" ) ? L"<hidden>" : str ) );
|
2020-01-28 11:36:03 +01:00
|
|
|
|
|
|
|
if (str && !(source = strdupW( str ))) return E_OUTOFMEMORY;
|
|
|
|
heap_free( connection->datasource );
|
|
|
|
connection->datasource = source;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_CommandTimeout( _Connection *iface, LONG *timeout )
|
|
|
|
{
|
2019-12-11 17:16:53 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
TRACE( "%p, %p\n", connection, timeout );
|
|
|
|
*timeout = connection->timeout;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_put_CommandTimeout( _Connection *iface, LONG timeout )
|
|
|
|
{
|
2019-12-11 17:16:53 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
TRACE( "%p, %d\n", connection, timeout );
|
|
|
|
connection->timeout = timeout;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_ConnectionTimeout( _Connection *iface, LONG *timeout )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %p\n", iface, timeout );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_put_ConnectionTimeout( _Connection *iface, LONG timeout )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %d\n", iface, timeout );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_Version( _Connection *iface, BSTR *str )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %p\n", iface, str );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_Close( _Connection *iface )
|
|
|
|
{
|
2020-06-07 15:51:20 +02:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
|
|
|
|
TRACE( "%p\n", connection );
|
|
|
|
|
|
|
|
if (connection->state == adStateClosed) return MAKE_ADO_HRESULT( adErrObjectClosed );
|
|
|
|
|
2020-10-21 11:47:14 +02:00
|
|
|
if (connection->session)
|
|
|
|
{
|
|
|
|
IUnknown_Release( connection->session );
|
|
|
|
connection->session = NULL;
|
|
|
|
}
|
|
|
|
|
2020-06-07 15:51:20 +02:00
|
|
|
connection->state = adStateClosed;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
2021-02-22 21:58:34 +01:00
|
|
|
static HRESULT WINAPI connection_Execute( _Connection *iface, BSTR command, VARIANT *records_affected,
|
|
|
|
LONG options, _Recordset **record_set )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
HRESULT hr;
|
|
|
|
_Recordset *recordset;
|
2021-04-30 12:52:06 +02:00
|
|
|
VARIANT source, active;
|
|
|
|
IDispatch *dispatch;
|
2021-02-22 21:58:34 +01:00
|
|
|
|
|
|
|
FIXME( "%p, %s, %p, 0x%08x, %p Semi-stub\n", iface, debugstr_w(command), records_affected, options, record_set );
|
|
|
|
|
|
|
|
if (connection->state == adStateClosed) return MAKE_ADO_HRESULT( adErrObjectClosed );
|
|
|
|
|
2021-04-30 12:52:06 +02:00
|
|
|
hr = Recordset_create( (void**)&recordset);
|
2021-02-22 21:58:34 +01:00
|
|
|
if (FAILED(hr))
|
2021-04-30 12:52:06 +02:00
|
|
|
{
|
2021-02-22 21:58:34 +01:00
|
|
|
return hr;
|
2021-04-30 12:52:06 +02:00
|
|
|
}
|
2021-02-17 10:17:17 +01:00
|
|
|
|
2021-04-30 12:52:06 +02:00
|
|
|
_Recordset_put_CursorLocation(recordset, connection->location);
|
2021-02-17 10:17:17 +01:00
|
|
|
|
2021-04-30 12:52:06 +02:00
|
|
|
V_VT(&source) = VT_BSTR;
|
|
|
|
V_BSTR(&source) = command;
|
|
|
|
|
|
|
|
hr = _Connection_QueryInterface(&connection->Connection_iface, &IID_IDispatch, (void**)&dispatch);
|
2021-02-17 10:17:17 +01:00
|
|
|
if (FAILED(hr))
|
2021-02-22 21:58:34 +01:00
|
|
|
{
|
2021-04-30 12:52:06 +02:00
|
|
|
_Recordset_Release(recordset);
|
2021-02-22 21:58:34 +01:00
|
|
|
return hr;
|
|
|
|
}
|
2021-02-17 10:17:17 +01:00
|
|
|
|
2021-04-30 12:52:06 +02:00
|
|
|
V_VT(&active) = VT_DISPATCH;
|
|
|
|
V_DISPATCH(&active) = dispatch;
|
|
|
|
|
|
|
|
hr = _Recordset_Open(recordset, source, active, adOpenDynamic, adLockPessimistic, 0);
|
|
|
|
VariantClear(&active);
|
2021-02-17 10:17:17 +01:00
|
|
|
if (FAILED(hr))
|
2021-02-22 21:58:34 +01:00
|
|
|
{
|
|
|
|
_Recordset_Release(recordset);
|
|
|
|
return hr;
|
|
|
|
}
|
2021-02-17 10:17:17 +01:00
|
|
|
|
|
|
|
if (records_affected)
|
|
|
|
{
|
2022-02-04 15:33:23 +01:00
|
|
|
ADO_LONGPTR count;
|
|
|
|
_Recordset_get_RecordCount(recordset, &count);
|
2021-02-17 10:17:17 +01:00
|
|
|
V_VT(records_affected) = VT_I4;
|
2022-02-04 15:33:23 +01:00
|
|
|
V_I4(records_affected) = count;
|
2021-02-17 10:17:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
*record_set = recordset;
|
|
|
|
|
|
|
|
return hr;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_BeginTrans( _Connection *iface, LONG *transaction_level )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %p\n", iface, transaction_level );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_CommitTrans( _Connection *iface )
|
|
|
|
{
|
|
|
|
FIXME( "%p\n", iface );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_RollbackTrans( _Connection *iface )
|
|
|
|
{
|
|
|
|
FIXME( "%p\n", iface );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_Open( _Connection *iface, BSTR connect_str, BSTR userid, BSTR password,
|
|
|
|
LONG options )
|
|
|
|
{
|
2020-06-07 15:51:20 +02:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
2020-10-21 11:47:14 +02:00
|
|
|
IDBProperties *props;
|
|
|
|
IDBInitialize *dbinit = NULL;
|
|
|
|
IDataInitialize *datainit;
|
|
|
|
IDBCreateSession *session = NULL;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE( "%p, %s, %s, %p, %08x\n", iface, debugstr_w(connect_str), debugstr_w(userid), password, options );
|
2020-06-07 15:51:20 +02:00
|
|
|
|
|
|
|
if (connection->state == adStateOpen) return MAKE_ADO_HRESULT( adErrObjectOpen );
|
2020-10-21 11:47:14 +02:00
|
|
|
if (!connect_str) return E_FAIL;
|
2020-06-07 15:51:20 +02:00
|
|
|
|
2020-10-21 11:47:14 +02:00
|
|
|
if ((hr = CoCreateInstance( &CLSID_MSDAINITIALIZE, NULL, CLSCTX_INPROC_SERVER, &IID_IDataInitialize,
|
|
|
|
(void **)&datainit )) != S_OK) return hr;
|
|
|
|
if ((hr = IDataInitialize_GetDataSource( datainit, NULL, CLSCTX_INPROC_SERVER, connect_str, &IID_IDBInitialize,
|
|
|
|
(IUnknown **)&dbinit )) != S_OK) goto done;
|
|
|
|
if ((hr = IDBInitialize_QueryInterface( dbinit, &IID_IDBProperties, (void **)&props )) != S_OK) goto done;
|
|
|
|
|
|
|
|
/* TODO - Update username/password if required. */
|
|
|
|
if ((userid && *userid) || (password && *password))
|
|
|
|
FIXME("Username/password parameters currently not supported\n");
|
|
|
|
|
|
|
|
if ((hr = IDBInitialize_Initialize( dbinit )) != S_OK) goto done;
|
|
|
|
if ((hr = IDBInitialize_QueryInterface( dbinit, &IID_IDBCreateSession, (void **)&session )) != S_OK) goto done;
|
|
|
|
if ((hr = IDBCreateSession_CreateSession( session, NULL, &IID_IUnknown, &connection->session )) == S_OK)
|
|
|
|
{
|
|
|
|
connection->state = adStateOpen;
|
|
|
|
}
|
|
|
|
IDBCreateSession_Release( session );
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (hr != S_OK && connection->session)
|
|
|
|
{
|
|
|
|
IUnknown_Release( connection->session );
|
|
|
|
connection->session = NULL;
|
|
|
|
}
|
|
|
|
if (dbinit)
|
|
|
|
{
|
|
|
|
IDBInitialize_Uninitialize( dbinit );
|
|
|
|
IDBInitialize_Release( dbinit );
|
|
|
|
}
|
|
|
|
IDataInitialize_Release( datainit );
|
|
|
|
|
|
|
|
TRACE("ret 0x%08x\n", hr);
|
|
|
|
return hr;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_Errors( _Connection *iface, Errors **obj )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %p\n", iface, obj );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_DefaultDatabase( _Connection *iface, BSTR *str )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %p\n", iface, str );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_put_DefaultDatabase( _Connection *iface, BSTR str )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %s\n", iface, debugstr_w(str) );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_IsolationLevel( _Connection *iface, IsolationLevelEnum *level )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %p\n", iface, level );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_put_IsolationLevel( _Connection *iface, IsolationLevelEnum level )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %d\n", iface, level );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_Attributes( _Connection *iface, LONG *attr )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %p\n", iface, attr );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_put_Attributes( _Connection *iface, LONG attr )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %d\n", iface, attr );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_CursorLocation( _Connection *iface, CursorLocationEnum *cursor_loc )
|
|
|
|
{
|
2020-10-09 09:57:14 +02:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
|
|
|
|
TRACE( "%p, %p\n", iface, cursor_loc );
|
|
|
|
|
|
|
|
*cursor_loc = connection->location;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_put_CursorLocation( _Connection *iface, CursorLocationEnum cursor_loc )
|
|
|
|
{
|
2020-10-09 09:57:14 +02:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
|
|
|
|
TRACE( "%p, %u\n", iface, cursor_loc );
|
|
|
|
|
|
|
|
connection->location = cursor_loc;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_Mode( _Connection *iface, ConnectModeEnum *mode )
|
|
|
|
{
|
2020-10-08 14:00:36 +02:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
|
|
|
|
TRACE( "%p, %p\n", iface, mode );
|
|
|
|
|
|
|
|
*mode = connection->mode;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_put_Mode( _Connection *iface, ConnectModeEnum mode )
|
|
|
|
{
|
2020-10-08 14:00:36 +02:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
|
|
|
|
TRACE( "%p, %u\n", iface, mode );
|
|
|
|
|
|
|
|
connection->mode = mode;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_Provider( _Connection *iface, BSTR *str )
|
|
|
|
{
|
2020-10-08 14:00:35 +02:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
BSTR provider = NULL;
|
|
|
|
|
|
|
|
TRACE( "%p, %p\n", iface, str );
|
|
|
|
|
|
|
|
if (connection->provider && !(provider = SysAllocString( connection->provider ))) return E_OUTOFMEMORY;
|
|
|
|
*str = provider;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_put_Provider( _Connection *iface, BSTR str )
|
|
|
|
{
|
2020-10-08 14:00:35 +02:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
WCHAR *provider = NULL;
|
|
|
|
|
|
|
|
TRACE( "%p, %s\n", iface, debugstr_w(str) );
|
|
|
|
|
|
|
|
if (!str) return MAKE_ADO_HRESULT(adErrInvalidArgument);
|
|
|
|
|
|
|
|
if (!(provider = strdupW( str ))) return E_OUTOFMEMORY;
|
|
|
|
heap_free( connection->provider );
|
|
|
|
connection->provider = provider;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_get_State( _Connection *iface, LONG *state )
|
|
|
|
{
|
2019-12-11 17:16:52 +01:00
|
|
|
struct connection *connection = impl_from_Connection( iface );
|
|
|
|
TRACE( "%p, %p\n", connection, state );
|
|
|
|
*state = connection->state;
|
|
|
|
return S_OK;
|
2019-12-06 14:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_OpenSchema( _Connection *iface, SchemaEnum schema, VARIANT restrictions,
|
|
|
|
VARIANT schema_id, _Recordset **record_set )
|
|
|
|
{
|
|
|
|
FIXME( "%p, %d, %s, %s, %p\n", iface, schema, debugstr_variant(&restrictions),
|
|
|
|
debugstr_variant(&schema_id), record_set );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connection_Cancel( _Connection *iface )
|
|
|
|
{
|
|
|
|
FIXME( "%p\n", iface );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct _ConnectionVtbl connection_vtbl =
|
|
|
|
{
|
|
|
|
connection_QueryInterface,
|
|
|
|
connection_AddRef,
|
|
|
|
connection_Release,
|
|
|
|
connection_GetTypeInfoCount,
|
|
|
|
connection_GetTypeInfo,
|
|
|
|
connection_GetIDsOfNames,
|
|
|
|
connection_Invoke,
|
|
|
|
connection_get_Properties,
|
|
|
|
connection_get_ConnectionString,
|
|
|
|
connection_put_ConnectionString,
|
|
|
|
connection_get_CommandTimeout,
|
|
|
|
connection_put_CommandTimeout,
|
|
|
|
connection_get_ConnectionTimeout,
|
|
|
|
connection_put_ConnectionTimeout,
|
|
|
|
connection_get_Version,
|
|
|
|
connection_Close,
|
|
|
|
connection_Execute,
|
|
|
|
connection_BeginTrans,
|
|
|
|
connection_CommitTrans,
|
|
|
|
connection_RollbackTrans,
|
|
|
|
connection_Open,
|
|
|
|
connection_get_Errors,
|
|
|
|
connection_get_DefaultDatabase,
|
|
|
|
connection_put_DefaultDatabase,
|
|
|
|
connection_get_IsolationLevel,
|
|
|
|
connection_put_IsolationLevel,
|
|
|
|
connection_get_Attributes,
|
|
|
|
connection_put_Attributes,
|
|
|
|
connection_get_CursorLocation,
|
|
|
|
connection_put_CursorLocation,
|
|
|
|
connection_get_Mode,
|
|
|
|
connection_put_Mode,
|
|
|
|
connection_get_Provider,
|
|
|
|
connection_put_Provider,
|
|
|
|
connection_get_State,
|
|
|
|
connection_OpenSchema,
|
|
|
|
connection_Cancel
|
|
|
|
};
|
|
|
|
|
2019-12-12 16:42:05 +01:00
|
|
|
static HRESULT WINAPI supporterror_QueryInterface( ISupportErrorInfo *iface, REFIID riid, void **obj )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ISupportErrorInfo( iface );
|
|
|
|
return connection_QueryInterface( &connection->Connection_iface, riid, obj );
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI supporterror_AddRef( ISupportErrorInfo *iface )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ISupportErrorInfo( iface );
|
|
|
|
return connection_AddRef( &connection->Connection_iface );
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI supporterror_Release( ISupportErrorInfo *iface )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ISupportErrorInfo( iface );
|
|
|
|
return connection_Release( &connection->Connection_iface );
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI supporterror_InterfaceSupportsErrorInfo( ISupportErrorInfo *iface, REFIID riid )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ISupportErrorInfo( iface );
|
|
|
|
FIXME( "%p, %s\n", connection, debugstr_guid(riid) );
|
|
|
|
return S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ISupportErrorInfoVtbl support_error_vtbl =
|
|
|
|
{
|
|
|
|
supporterror_QueryInterface,
|
|
|
|
supporterror_AddRef,
|
|
|
|
supporterror_Release,
|
|
|
|
supporterror_InterfaceSupportsErrorInfo
|
|
|
|
};
|
|
|
|
|
2020-05-28 15:13:40 +02:00
|
|
|
static HRESULT WINAPI connpointcontainer_QueryInterface( IConnectionPointContainer *iface,
|
|
|
|
REFIID riid, void **obj )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_IConnectionPointContainer( iface );
|
|
|
|
return connection_QueryInterface( &connection->Connection_iface, riid, obj );
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI connpointcontainer_AddRef( IConnectionPointContainer *iface )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_IConnectionPointContainer( iface );
|
|
|
|
return connection_AddRef( &connection->Connection_iface );
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI connpointcontainer_Release( IConnectionPointContainer *iface )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_IConnectionPointContainer( iface );
|
|
|
|
return connection_Release( &connection->Connection_iface );
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connpointcontainer_EnumConnectionPoints( IConnectionPointContainer *iface,
|
|
|
|
IEnumConnectionPoints **points )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_IConnectionPointContainer( iface );
|
|
|
|
FIXME( "%p, %p\n", connection, points );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connpointcontainer_FindConnectionPoint( IConnectionPointContainer *iface,
|
|
|
|
REFIID riid, IConnectionPoint **point )
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_IConnectionPointContainer( iface );
|
2020-06-01 13:42:18 +02:00
|
|
|
|
|
|
|
TRACE( "%p, %s %p\n", connection, debugstr_guid( riid ), point );
|
|
|
|
|
|
|
|
if (!point) return E_POINTER;
|
|
|
|
|
|
|
|
if (IsEqualIID( riid, connection->cp_connev.riid ))
|
|
|
|
{
|
|
|
|
*point = &connection->cp_connev.IConnectionPoint_iface;
|
|
|
|
IConnectionPoint_AddRef( *point );
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME( "unsupported connection point %s\n", debugstr_guid( riid ) );
|
|
|
|
return CONNECT_E_NOCONNECTION;
|
2020-05-28 15:13:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct IConnectionPointContainerVtbl connpointcontainer_vtbl =
|
|
|
|
{
|
|
|
|
connpointcontainer_QueryInterface,
|
|
|
|
connpointcontainer_AddRef,
|
|
|
|
connpointcontainer_Release,
|
|
|
|
connpointcontainer_EnumConnectionPoints,
|
|
|
|
connpointcontainer_FindConnectionPoint
|
|
|
|
};
|
|
|
|
|
2020-06-01 13:42:17 +02:00
|
|
|
static HRESULT WINAPI connpoint_QueryInterface( IConnectionPoint *iface, REFIID riid, void **obj )
|
|
|
|
{
|
|
|
|
struct connection_point *connpoint = impl_from_IConnectionPoint( iface );
|
|
|
|
|
|
|
|
if (IsEqualGUID( &IID_IUnknown, riid ) || IsEqualGUID( &IID_IConnectionPoint, riid ))
|
|
|
|
{
|
|
|
|
*obj = &connpoint->IConnectionPoint_iface;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME( "interface %s not implemented\n", debugstr_guid( riid ) );
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
connection_AddRef( &connpoint->conn->Connection_iface );
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI connpoint_AddRef( IConnectionPoint *iface )
|
|
|
|
{
|
|
|
|
struct connection_point *connpoint = impl_from_IConnectionPoint( iface );
|
|
|
|
return IConnectionPointContainer_AddRef( &connpoint->conn->IConnectionPointContainer_iface );
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI connpoint_Release( IConnectionPoint *iface )
|
|
|
|
{
|
|
|
|
struct connection_point *connpoint = impl_from_IConnectionPoint( iface );
|
|
|
|
return IConnectionPointContainer_Release( &connpoint->conn->IConnectionPointContainer_iface );
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connpoint_GetConnectionInterface( IConnectionPoint *iface, IID *iid )
|
|
|
|
{
|
|
|
|
struct connection_point *connpoint = impl_from_IConnectionPoint( iface );
|
|
|
|
FIXME( "%p, %p\n", connpoint, iid );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connpoint_GetConnectionPointContainer( IConnectionPoint *iface,
|
|
|
|
IConnectionPointContainer **container )
|
|
|
|
{
|
|
|
|
struct connection_point *connpoint = impl_from_IConnectionPoint( iface );
|
|
|
|
FIXME( "%p, %p\n", connpoint, container );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connpoint_Advise( IConnectionPoint *iface, IUnknown *unk_sink,
|
|
|
|
DWORD *cookie )
|
|
|
|
{
|
|
|
|
struct connection_point *connpoint = impl_from_IConnectionPoint( iface );
|
2020-06-17 14:36:15 +02:00
|
|
|
IUnknown *sink, **tmp;
|
|
|
|
ULONG new_size;
|
|
|
|
HRESULT hr;
|
|
|
|
DWORD i;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %p\n", iface, unk_sink, cookie );
|
|
|
|
|
|
|
|
if (!unk_sink || !cookie) return E_FAIL;
|
|
|
|
|
|
|
|
if (FAILED(hr = IUnknown_QueryInterface( unk_sink, &IID_ConnectionEventsVt, (void**)&sink )))
|
|
|
|
{
|
|
|
|
*cookie = 0;
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (connpoint->sinks)
|
|
|
|
{
|
|
|
|
for (i = 0; i < connpoint->sinks_size; ++i)
|
|
|
|
{
|
|
|
|
if (!connpoint->sinks[i])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == connpoint->sinks_size)
|
|
|
|
{
|
|
|
|
new_size = connpoint->sinks_size * 2;
|
|
|
|
if (!(tmp = heap_realloc_zero( connpoint->sinks, new_size * sizeof(*connpoint->sinks) )))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
connpoint->sinks = tmp;
|
|
|
|
connpoint->sinks_size = new_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(connpoint->sinks = heap_alloc_zero( sizeof(*connpoint->sinks) ))) return E_OUTOFMEMORY;
|
|
|
|
connpoint->sinks_size = 1;
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
connpoint->sinks[i] = sink;
|
|
|
|
*cookie = i + 1;
|
|
|
|
return S_OK;
|
2020-06-01 13:42:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connpoint_Unadvise( IConnectionPoint *iface, DWORD cookie )
|
|
|
|
{
|
|
|
|
struct connection_point *connpoint = impl_from_IConnectionPoint( iface );
|
2020-06-17 14:36:15 +02:00
|
|
|
TRACE( "%p, %u\n", connpoint, cookie );
|
|
|
|
|
|
|
|
if (!cookie || cookie > connpoint->sinks_size || !connpoint->sinks || !connpoint->sinks[cookie - 1])
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
IUnknown_Release( connpoint->sinks[cookie - 1] );
|
|
|
|
connpoint->sinks[cookie - 1] = NULL;
|
|
|
|
return S_OK;
|
2020-06-01 13:42:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI connpoint_EnumConnections( IConnectionPoint *iface,
|
|
|
|
IEnumConnections **points )
|
|
|
|
{
|
|
|
|
struct connection_point *connpoint = impl_from_IConnectionPoint( iface );
|
|
|
|
FIXME( "%p, %p\n", connpoint, points );
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IConnectionPointVtbl connpoint_vtbl =
|
|
|
|
{
|
|
|
|
connpoint_QueryInterface,
|
|
|
|
connpoint_AddRef,
|
|
|
|
connpoint_Release,
|
|
|
|
connpoint_GetConnectionInterface,
|
|
|
|
connpoint_GetConnectionPointContainer,
|
|
|
|
connpoint_Advise,
|
|
|
|
connpoint_Unadvise,
|
|
|
|
connpoint_EnumConnections
|
|
|
|
};
|
|
|
|
|
2021-01-15 08:22:14 +01:00
|
|
|
static HRESULT WINAPI adoconstruct_QueryInterface(ADOConnectionConstruction15 *iface, REFIID riid, void **obj)
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ADOConnectionConstruction15( iface );
|
|
|
|
return _Connection_QueryInterface( &connection->Connection_iface, riid, obj );
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI adoconstruct_AddRef(ADOConnectionConstruction15 *iface)
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ADOConnectionConstruction15( iface );
|
|
|
|
return _Connection_AddRef( &connection->Connection_iface );
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI adoconstruct_Release(ADOConnectionConstruction15 *iface)
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ADOConnectionConstruction15( iface );
|
|
|
|
return _Connection_Release( &connection->Connection_iface );
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI adoconstruct_get_DSO(ADOConnectionConstruction15 *iface, IUnknown **dso)
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ADOConnectionConstruction15( iface );
|
|
|
|
FIXME("%p, %p\n", connection, dso);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI adoconstruct_get_Session(ADOConnectionConstruction15 *iface, IUnknown **session)
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ADOConnectionConstruction15( iface );
|
2021-01-15 08:22:15 +01:00
|
|
|
TRACE("%p, %p\n", connection, session);
|
|
|
|
|
|
|
|
*session = connection->session;
|
|
|
|
if (*session)
|
|
|
|
IUnknown_AddRef(*session);
|
|
|
|
return S_OK;
|
2021-01-15 08:22:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI adoconstruct_WrapDSOandSession(ADOConnectionConstruction15 *iface, IUnknown *dso,
|
|
|
|
IUnknown *session)
|
|
|
|
{
|
|
|
|
struct connection *connection = impl_from_ADOConnectionConstruction15( iface );
|
|
|
|
FIXME("%p, %p, %p\n", connection, dso, session);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ADOConnectionConstruction15Vtbl ado_construct_vtbl =
|
|
|
|
{
|
|
|
|
adoconstruct_QueryInterface,
|
|
|
|
adoconstruct_AddRef,
|
|
|
|
adoconstruct_Release,
|
|
|
|
adoconstruct_get_DSO,
|
|
|
|
adoconstruct_get_Session,
|
|
|
|
adoconstruct_WrapDSOandSession
|
|
|
|
};
|
|
|
|
|
2019-12-06 14:54:18 +01:00
|
|
|
HRESULT Connection_create( void **obj )
|
|
|
|
{
|
|
|
|
struct connection *connection;
|
|
|
|
|
|
|
|
if (!(connection = heap_alloc( sizeof(*connection) ))) return E_OUTOFMEMORY;
|
|
|
|
connection->Connection_iface.lpVtbl = &connection_vtbl;
|
2019-12-12 16:42:05 +01:00
|
|
|
connection->ISupportErrorInfo_iface.lpVtbl = &support_error_vtbl;
|
2020-05-28 15:13:40 +02:00
|
|
|
connection->IConnectionPointContainer_iface.lpVtbl = &connpointcontainer_vtbl;
|
2021-01-15 08:22:14 +01:00
|
|
|
connection->ADOConnectionConstruction15_iface.lpVtbl = &ado_construct_vtbl;
|
2019-12-06 14:54:18 +01:00
|
|
|
connection->refs = 1;
|
2019-12-11 17:16:52 +01:00
|
|
|
connection->state = adStateClosed;
|
2019-12-11 17:16:53 +01:00
|
|
|
connection->timeout = 30;
|
2020-01-28 11:36:03 +01:00
|
|
|
connection->datasource = NULL;
|
2020-10-21 11:47:12 +02:00
|
|
|
if (!(connection->provider = strdupW( L"MSDASQL" )))
|
|
|
|
{
|
|
|
|
heap_free( connection );
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2020-10-08 14:00:36 +02:00
|
|
|
connection->mode = adModeUnknown;
|
2020-10-09 09:57:14 +02:00
|
|
|
connection->location = adUseServer;
|
2020-10-21 11:47:14 +02:00
|
|
|
connection->session = NULL;
|
2019-12-06 14:54:18 +01:00
|
|
|
|
2020-06-01 13:42:17 +02:00
|
|
|
connection->cp_connev.conn = connection;
|
|
|
|
connection->cp_connev.riid = &DIID_ConnectionEvents;
|
|
|
|
connection->cp_connev.IConnectionPoint_iface.lpVtbl = &connpoint_vtbl;
|
2020-06-17 14:36:15 +02:00
|
|
|
connection->cp_connev.sinks = NULL;
|
|
|
|
connection->cp_connev.sinks_size = 0;
|
2020-06-01 13:42:17 +02:00
|
|
|
|
2019-12-06 14:54:18 +01:00
|
|
|
*obj = &connection->Connection_iface;
|
|
|
|
TRACE( "returning iface %p\n", *obj );
|
|
|
|
return S_OK;
|
|
|
|
}
|