mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-04-07 21:07:12 +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.
66 lines
1.5 KiB
C++
66 lines
1.5 KiB
C++
//
|
|
// ODBCSQLiteTest.h
|
|
//
|
|
// Definition of the ODBCSQLiteTest class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef ODBCSQLiteTest_INCLUDED
|
|
#define ODBCSQLiteTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Data/ODBC/ODBC.h"
|
|
#include "ODBCTest.h"
|
|
|
|
|
|
class ODBCSQLiteTest: public ODBCTest
|
|
/// SQLite3 ODBC test class
|
|
/// Tested:
|
|
///
|
|
/// Driver | DB | OS
|
|
/// ------------+---------------+------------------------------------------
|
|
/// 00.70.00.00 | SQLite 3.* | MS Windows XP Professional x64 v.2003/SP1
|
|
{
|
|
public:
|
|
ODBCSQLiteTest(const std::string& name);
|
|
~ODBCSQLiteTest();
|
|
|
|
void testBareboneODBC();
|
|
void testAffectedRows();
|
|
void testNull();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
void dropObject(const std::string& type, const std::string& name);
|
|
void recreateNullableTable();
|
|
void recreatePersonTable();
|
|
void recreatePersonBLOBTable();
|
|
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 // ODBCSQLiteTest_INCLUDED
|