20 lines
483 B
C
20 lines
483 B
C
/**
|
||
* @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"
|