Files
sqlgen/include/sqlgen.hpp
Dr. Patrick Urbanke 863b861090 Added drop
2025-05-10 16:32:34 +02:00

29 lines
739 B
C++

#ifndef SQLGEN_HPP_
#define SQLGEN_HPP_
#include "sqlgen/Connection.hpp"
#include "sqlgen/CreateTable.hpp"
#include "sqlgen/Flatten.hpp"
#include "sqlgen/Insert.hpp"
#include "sqlgen/Iterator.hpp"
#include "sqlgen/IteratorBase.hpp"
#include "sqlgen/Literal.hpp"
#include "sqlgen/Pattern.hpp"
#include "sqlgen/PrimaryKey.hpp"
#include "sqlgen/Range.hpp"
#include "sqlgen/Ref.hpp"
#include "sqlgen/Result.hpp"
#include "sqlgen/Varchar.hpp"
#include "sqlgen/col.hpp"
#include "sqlgen/delete_from.hpp"
#include "sqlgen/drop.hpp"
#include "sqlgen/if_exists.hpp"
#include "sqlgen/limit.hpp"
#include "sqlgen/order_by.hpp"
#include "sqlgen/patterns.hpp"
#include "sqlgen/read.hpp"
#include "sqlgen/where.hpp"
#include "sqlgen/write.hpp"
#endif