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

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