mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 18:07:14 +01:00
4a6bfc086c
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.
74 lines
1.7 KiB
C++
74 lines
1.7 KiB
C++
//
|
|
// ODBCDB2Test.h
|
|
//
|
|
// Definition of the ODBCDB2Test class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef ODBCDB2Test_INCLUDED
|
|
#define ODBCDB2Test_INCLUDED
|
|
|
|
|
|
#include "Poco/Data/ODBC/ODBC.h"
|
|
#include "ODBCTest.h"
|
|
|
|
|
|
class ODBCDB2Test: public ODBCTest
|
|
/// IBM DB2 UDB ODBC test class
|
|
/// Tested:
|
|
///
|
|
/// Driver | DB | OS
|
|
/// ------------+-------------------+------------------------------------------
|
|
/// 9.01.00.356 | DB2 Express-C 9.1 | MS Windows XP Professional x64 v.2003/SP1
|
|
{
|
|
public:
|
|
ODBCDB2Test(const std::string& name);
|
|
~ODBCDB2Test();
|
|
|
|
void testBareboneODBC();
|
|
|
|
void testBLOB();
|
|
void testFilter();
|
|
|
|
void testStoredProcedure();
|
|
void testStoredProcedureAny();
|
|
void testStoredProcedureDynamicAny();
|
|
void testStoredFunction();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
void dropObject(const std::string& type, const std::string& tableName);
|
|
void recreateNullableTable();
|
|
void recreatePersonTable();
|
|
void recreatePersonBLOBTable();
|
|
void recreatePersonDateTable();
|
|
void recreatePersonTimeTable();
|
|
void recreatePersonDateTimeTable();
|
|
void recreateStringsTable();
|
|
void recreateIntsTable();
|
|
void recreateFloatsTable();
|
|
void recreateTuplesTable();
|
|
void recreateVectorsTable();
|
|
void recreateAnysTable();
|
|
void recreateNullsTable(const std::string& notNull = "");
|
|
void recreateMiscTable();
|
|
void recreateLogTable();
|
|
|
|
static ODBCTest::SessionPtr _pSession;
|
|
static ODBCTest::ExecPtr _pExecutor;
|
|
static std::string _driver;
|
|
static std::string _dsn;
|
|
static std::string _uid;
|
|
static std::string _pwd;
|
|
static std::string _connectString;
|
|
};
|
|
|
|
|
|
#endif // ODBCDB2Test_INCLUDED
|