-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
30 lines (19 loc) · 797 Bytes
/
README
File metadata and controls
30 lines (19 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
General Class Library (GCL)
===========================
sqlWriter
---------------
This selection of classes allows SQL queries to be easily assembled. The mapped part is user generated map files can be loaded
to map a programmed database application to the user generated (or pre-existing) tables.
A typical code section would be
SQLWriter sqlQuery.select("employees.*").from(employees);
std::string sqlString = sqlQuery.string();
or
std::stirng sqlString = static_cast<std::string>(sqlQuery);
The value of sqlString is then
SELECT employees.* FROM employees;
PluginManager
-------------
Only one instance of the plugin manager class should be used in an application. This class contains data that should be shared over
the entire application.
The class is multi-thread safe.
------