Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
Utils.h
Go to the documentation of this file.
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#ifndef _Stroika_Foundation_Database_SQL_Utils_h_
5#define _Stroika_Foundation_Database_SQL_Utils_h_ 1
6
7#include "Stroika/Foundation/StroikaPreComp.h"
8
10
11/**
12 * \file
13 *
14 * \note Code-Status: <a href="Code-Status.md#Alpha">Alpha</a>
15 */
16
17namespace Stroika::Foundation::Database::SQL::Utils {
18
19 using Characters::String;
20
21 /**
22 * @todo - probably move to common area - for all DB stuff - not specific to SQLite (maybe have folder for "SQL")
23 */
24 String QuoteStringForDB (const String& s);
25
26}
27
28/*
29 ********************************************************************************
30 ***************************** Implementation Details ***************************
31 ********************************************************************************
32 */
33#include "Utils.inl"
34
35#endif /*_Stroika_Foundation_Database_SQL_Utils_h_*/
String QuoteStringForDB(const String &s)
Definition Utils.cpp:23