CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
db_provider_factories.h
1
2#ifndef _aspose_data_common_db_provider_factories_h_
3#define _aspose_data_common_db_provider_factories_h_
4
5#include <system/exceptions.h>
6
7namespace System { namespace Data { namespace Common {
8
9class DbProviderFactory;
10
15class ASPOSECPP_SHARED_CLASS DbProviderFactories
16{
17public:
21 static ASPOSECPP_SHARED_API SharedPtr<DbProviderFactory> GetFactory(const String& providerInvariantName);
22};
23
24} } } // namespace System::Data::Common
25
26#endif // _aspose_data_common_db_provider_factories_h_
API to get DB provider factories. Objects of this class should only be allocated using System::MakeOb...
Definition: db_provider_factories.h:16
static SharedPtr< DbProviderFactory > GetFactory(const String &providerInvariantName)
Gets DB provider factory by name.
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:122
Definition: db_command.h:9