mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-04-06 04:17:14 +02:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
//
|
|
// ODBCAccessTest.h
|
|
//
|
|
// Definition of the ODBCAccessTest class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef ODBCAccessTest_INCLUDED
|
|
#define ODBCAccessTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Data/ODBC/ODBC.h"
|
|
#include "Poco/Data/Session.h"
|
|
#include "Poco/Data/ODBC/Utility.h"
|
|
#include "Poco/SharedPtr.h"
|
|
#include "CppUnit/TestCase.h"
|
|
#include "SQLExecutor.h"
|
|
|
|
|
|
class ODBCAccessTest: public CppUnit::TestCase
|
|
/// MS Access ODBC test class
|
|
/// Tested:
|
|
///
|
|
/// Driver | DB | OS
|
|
/// ------------+-----------+------------------------------------------
|
|
/// 4.00.6305.00| Jet 4.0 | MS Windows XP Professional x64 v.2003/SP1
|
|
{
|
|
public:
|
|
ODBCAccessTest(const std::string& name);
|
|
~ODBCAccessTest();
|
|
|
|
void testSimpleAccess();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
void dropTable(const std::string& tableName);
|
|
void recreatePersonTable();
|
|
|
|
static bool init(const std::string& driver, const std::string& dsn);
|
|
static bool canConnect(const std::string& driver, const std::string& dsn);
|
|
|
|
static Poco::Data::ODBC::Utility::DriverMap _drivers;
|
|
static std::string _dbConnString;
|
|
static Poco::Data::Session* _pSession;
|
|
bool _owner;
|
|
};
|
|
|
|
|
|
#endif // ODBCAccessTest_INCLUDED
|