ConnectionStringInfo.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace AppSecInc
4 {
5  namespace Databases
6  {
7  namespace ODBC
8  {
11  {
12  private:
13  std::wstring m_cs;
14  public:
15  ODBCConnectionStringInfo(const std::wstring& cs);
16  virtual ~ODBCConnectionStringInfo();
17  std::wstring GetConnectionString() const { return m_cs; }
18  };
19  }
20  }
21 }
22 
ODBCConnectionStringInfo(const std::wstring &cs)
Definition: ConnectionStringInfo.cpp:6
std::wstring GetConnectionString() const
Definition: ConnectionStringInfo.h:17
A generic connection info.
Definition: ConnectionInfo.h:10
virtual ~ODBCConnectionStringInfo()
Definition: ConnectionStringInfo.cpp:12
A generic connection info class with a fixed connection string.
Definition: ConnectionStringInfo.h:10


© Application Security Inc. - All Rights Reserved http://msiext.codeplex.com