eis/mix_cc/sql.h

20 lines
483 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @file mix_cc/sql.h
* @brief 把c++查表行为转换为sql并将sql执行的库
* @author Cat (null.null.null@qq.com)
* @version 0.1
* @date 2021-05-07
*
* Copyright: Baosight Co. Ltd.
* DO NOT COPY/USE WITHOUT PERMISSION
*
*/
#pragma once
#include "mix_cc/sql/value.h"
#include "mix_cc/sql/column.h"
#include "mix_cc/sql/select.h"
#include "mix_cc/sql/insert_into.h"
#include "mix_cc/sql/delete_from.h"
#include "mix_cc/sql/update.h"
#include "mix_cc/sql/exec.h"