1 #ifndef SQL_H
2 #define SQL_H
3 
4 #include <Core/Core.h>
5 
6 namespace Upp {
7 
8 #ifdef flagNOAPPSQL
9 	#define NOAPPSQL
10 	#define APPSQLCURSOR
11 	#define APPSQLSESSION
12 #else
13 	#define APPSQLCURSOR = SQL
14 	#define APPSQLSESSION = SQL.GetSession()
15 #endif
16 
17 #include "Sqlexp.h"
18 #include "Sqls.h"
19 #include "SqlSchema.h"
20 
21 }
22 
23 #endif
24