mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
23 lines
309 B
C++
23 lines
309 B
C++
#ifndef SQL_H
|
|
#define SQL_H
|
|
|
|
#include <Core/Core.h>
|
|
|
|
namespace Upp {
|
|
|
|
#ifdef flagNOAPPSQL
|
|
#define NOAPPSQL
|
|
#define APPSQLCURSOR
|
|
#define APPSQLSESSION
|
|
#else
|
|
#define APPSQLCURSOR = SQL
|
|
#define APPSQLSESSION = SQL.GetSession()
|
|
#endif
|
|
|
|
#include "Sqlexp.h"
|
|
#include "Sqls.h"
|
|
#include "SqlSchema.h"
|
|
|
|
}
|
|
|
|
#endif
|