Stroika Library 3.0d18
 
Loading...
Searching...
No Matches
DirectEmployeesDB.h
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#ifndef _Samples_SQL_DirectEmployeesDB_h_
5#define _Samples_SQL_DirectEmployeesDB_h_ 1
6
7#include "Stroika/Foundation/StroikaPreComp.h"
8
9#include <functional>
10
12
13namespace Stroika::Samples::SQL {
14
15 using namespace Stroika::Foundation::Database::SQL;
16
17 /**
18 * \brief Simple test of creating a plain (employees) db and adding to it, and a few simple queries.
19 */
20 void DirectEmployeesDB (const std::function<Connection::Ptr ()>& connectionFactory);
21
22}
23
24/*
25 ********************************************************************************
26 ***************************** Implementation Details ***************************
27 ********************************************************************************
28 */
29
30#endif /*_Samples_SQL_DirectEmployeesDB_h_*/