You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
341 B
C

3 years ago
#pragma once
#include <string>
3 years ago
#include "DllDefines.h"
#include "../include/dbini.h"
3 years ago
class UTILITYDLL DbConfig
{
public:
static DbConfig& Instance();
std::string ConnectionString(const std::string& strDbName) const;
3 years ago
private:
DbConfig(void);
~DbConfig(void);
3 years ago
//
std::string m_strProvider{ CONNECTION_STRING };
3 years ago
};