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