ultimatepp/uppsrc/Sql/Sql.h
cxl 8ebdcbb0d5 uppsrc: NAMESPACE_UPP / END_UPP_NAMESPACE removed
git-svn-id: svn://ultimatepp.org/upp/trunk@10186 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-08-26 17:15:30 +00:00

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