9ec8eb952e
All checks were successful
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Successful in 1m11s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Successful in 1m22s
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Successful in 1m27s
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (push) Successful in 1m29s
linux-x64-gcc / linux-gcc (push) Successful in 1m55s
linux-hisiv500-gcc / linux-gcc-hisiv500 (push) Successful in 3m17s
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (pull_request) Successful in 1m9s
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (pull_request) Successful in 1m14s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (pull_request) Successful in 1m20s
linux-x64-gcc / linux-gcc (pull_request) Successful in 1m24s
linux-mips64-gcc / linux-gcc-mips64el (push) Successful in 4m26s
linux-mips64-gcc / linux-gcc-mips64el (pull_request) Successful in 1m43s
rpcrypto-build / build (Release, himix200.toolchain.cmake) (pull_request) Successful in 1m55s
linux-hisiv500-gcc / linux-gcc-hisiv500 (pull_request) Successful in 4m8s
97 lines
3.4 KiB
C++
97 lines
3.4 KiB
C++
/*
|
|
* Copyright (c) 2014-2015, niXman (i dot nixman dog gmail dot com)
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted provided that the following conditions are met:
|
|
*
|
|
* Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
*
|
|
* Redistributions in binary form must reproduce the above copyright notice, this
|
|
* list of conditions and the following disclaimer in the documentation and/or
|
|
* other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#if 0 // syntax example
|
|
SQLPP_DECLARE_TABLE(
|
|
(table, \
|
|
SQLPP_DROP_IF_EXISTS \
|
|
,SQLPP_CREATE_IF_NOT_EXISTS \
|
|
,SQLPP_ENGINE("InnoDB") \
|
|
,SQLPP_CHARACTER_SET("utf-8") \
|
|
,SQLPP_COMMENT("table comments") \
|
|
)
|
|
,
|
|
(id, int, SQLPP_NOT_NULL, SQLPP_PRIMARY_KEY, SQLPP_AUTO_INCREMENT)
|
|
(name, varchar(64), SQLPP_NOT_NULL, SQLPP_INDEX("name_index"), SQLPP_DEFAULT("any name"))
|
|
(age, int, SQLPP_NOT_NULL, SQLPP_INDEX("age_index"), SQLPP_UNIQUE, SQLPP_COMMENT("some comments"))
|
|
)
|
|
#endif
|
|
|
|
#include <sqlpp11/sqlpp11.h>
|
|
#include <sqlpp11/ppgen.h>
|
|
|
|
#include "MockDb.h"
|
|
|
|
// clang-format off
|
|
SQLPP_DECLARE_TABLE(
|
|
(tab_person)
|
|
,
|
|
(id , int , SQLPP_PRIMARY_KEY)
|
|
(name , varchar(255), SQLPP_NOT_NULL )
|
|
(feature, int , SQLPP_NOT_NULL )
|
|
(age , int_unsigned, SQLPP_NOT_NULL )
|
|
(level , real , SQLPP_NOT_NULL )
|
|
)
|
|
|
|
SQLPP_DECLARE_TABLE(
|
|
(tab_feature)
|
|
,
|
|
(id , int , SQLPP_PRIMARY_KEY)
|
|
(name , varchar(255), SQLPP_NULL )
|
|
(fatal, bool , SQLPP_NOT_NULL )
|
|
(date0, date , SQLPP_NULL )
|
|
(date1, datetime , SQLPP_NULL )
|
|
(date2, timestamp , SQLPP_NULL )
|
|
)
|
|
// clang-format on
|
|
|
|
int Ppgen(int, char*[])
|
|
{
|
|
MockDb db{};
|
|
const auto p = tab_person::tab_person{};
|
|
const auto f = tab_feature::tab_feature{};
|
|
|
|
db(insert_into(f).set(f.name = "loves c++", f.fatal = false));
|
|
|
|
db(insert_into(f).default_values());
|
|
|
|
auto i = insert_into(p).columns(p.name, p.feature, p.age, p.level);
|
|
i.values.add(p.name = "Roland", p.feature = 1, p.age = static_cast<unsigned int>(32), p.level = 3.14);
|
|
i.values.add(p.name = "Zaphod", p.feature = sqlpp::default_value, p.age = static_cast<unsigned int>(16),
|
|
p.level = 3.14 * 2);
|
|
db(i);
|
|
|
|
auto pi = db.prepare(insert_into(p).set(p.name = parameter(f.name), p.feature = parameter(p.feature),
|
|
p.age = parameter(p.age), p.level = parameter(p.level)));
|
|
pi.params.name = "likes java";
|
|
pi.params.feature = 2;
|
|
pi.params.age = 21;
|
|
pi.params.level = 3.14;
|
|
|
|
db(pi);
|
|
return 0;
|
|
}
|