SqlShimProviderFactory Class
Represents a base class for a factory required to create inheritors of generic base classes to use with dotConnect for QuickBooks Online.
This sample routine creates and returns
Devart.Common.DbConnectionBase object.
public DbConnection GetConnectionBaseClass2(DbProviderFactory factory)
{
// if our factory supports creating a DbConnection, return it.
if ((factory.SupportedClasses & DbProviderSupportedClasses.DbConnection) > 0)
return factory.CreateConnection();
else
return null;
}
Public Function GetConnectionBaseClass2(ByVal factory As DbProviderFactory) As DbConnection
'if our factory supports creating a DbConnection, return it.
If ((factory.SupportedClasses And DbProviderSupportedClasses.DbConnection) > 0) Then
Return factory.CreateConnection()
Else
Return Nothing
End If
End Function
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2