0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 12:51:13 +08:00
sqlpp11/tests/core/serialize/CustomQuery.cpp

90 lines
4.4 KiB
C++
Raw Normal View History

2016-04-16 01:05:42 +08:00
/*
* Copyright (c) 2016-2022, Roland Bock
2016-04-16 01:05:42 +08:00
* 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.
*/
#include "Sample.h"
#include "compare.h"
2016-04-16 01:05:42 +08:00
#include <sqlpp11/sqlpp11.h>
#include <iostream>
SQLPP_CREATE_NAME_TAG(pragma);
2019-04-11 17:30:25 +08:00
int CustomQuery(int, char*[])
2016-04-16 01:05:42 +08:00
{
const auto foo = test::TabFoo{};
const auto bar = test::TabBar{};
// Unconditionally
2024-08-08 13:26:17 +08:00
SQLPP_COMPARE(custom_query(sqlpp::select(), select_flags(sqlpp::distinct), select_columns(foo.doubleN), from(foo),
sqlpp::unconditionally()),
"SELECT DISTINCT tab_foo.double_n FROM tab_foo ");
2016-04-16 01:05:42 +08:00
// A full select statement made individual clauses
2024-08-08 13:26:17 +08:00
SQLPP_COMPARE(
custom_query(sqlpp::select(), select_flags(sqlpp::distinct), select_columns(foo.doubleN),
from(foo.join(bar).on(foo.doubleN == bar.id)), where(bar.id > 17), group_by(foo.doubleN),
having(avg(bar.id) > 19), order_by(foo.doubleN.asc()), sqlpp::limit(10u), sqlpp::offset(100u)),
2024-08-11 03:35:23 +08:00
"SELECT DISTINCT tab_foo.double_n FROM tab_foo INNER JOIN tab_bar ON tab_foo.double_n = tab_bar.id WHERE "
"tab_bar.id > 17 GROUP BY tab_foo.double_n HAVING AVG(tab_bar.id) > 19 ORDER BY tab_foo.double_n ASC "
2024-08-08 13:26:17 +08:00
"LIMIT 10 OFFSET 100");
2016-04-16 01:05:42 +08:00
// A full select statement made individual clauses
2024-08-08 13:26:17 +08:00
SQLPP_COMPARE(
custom_query(sqlpp::select(), select_flags(sqlpp::distinct), select_columns(foo.doubleN),
2024-08-08 13:26:17 +08:00
from(foo.join(bar).on(foo.doubleN == bar.id)), where(bar.id > 17), group_by(foo.doubleN),
having(avg(bar.id) > 19), order_by(foo.doubleN.asc(), foo.uIntN.order(sqlpp::sort_type::desc)),
2024-06-08 17:35:54 +08:00
sqlpp::limit(7u), sqlpp::offset(3u)),
2024-08-11 03:35:23 +08:00
"SELECT DISTINCT tab_foo.double_n FROM tab_foo INNER JOIN tab_bar ON tab_foo.double_n = tab_bar.id WHERE "
"tab_bar.id > 17 GROUP BY tab_foo.double_n HAVING AVG(tab_bar.id) > 19 ORDER BY tab_foo.double_n "
2024-09-01 17:15:29 +08:00
"ASC, tab_foo.u_int_n DESC LIMIT 7 OFFSET 3");
2024-07-29 13:00:12 +08:00
// A pragma query/query for sqlite
2024-08-08 13:26:17 +08:00
SQLPP_COMPARE(
custom_query(sqlpp::verbatim("PRAGMA user_version")).with_result_type_of(select(sqlpp::value(1).as(pragma))),
" PRAGMA user_version");
2019-04-11 17:30:25 +08:00
// An insert from select for postgresql
const auto x = 17;
2024-08-08 13:26:17 +08:00
SQLPP_COMPARE(custom_query(insert_into(foo).columns(foo.doubleN),
select(sqlpp::value(x).as(foo.doubleN))
.from(foo)
.where(not exists(select(foo.doubleN).from(foo).where(foo.doubleN == x)))),
"INSERT INTO tab_foo (double_n) "
"SELECT 17 AS double_n FROM tab_foo "
2024-08-11 03:35:23 +08:00
"WHERE NOT EXISTS (SELECT tab_foo.double_n FROM tab_foo WHERE tab_foo.double_n = 17)");
2019-04-11 17:30:25 +08:00
2024-08-08 13:26:17 +08:00
#warning : reactivate
#if 0
// A multi-row "insert or ignore"
auto batch = insert_columns(bar.textN, bar.boolNn);
batch.add_values(bar.textN = "sample", bar.boolNn = true);
batch.add_values(bar.textN = "ample", bar.boolNn = false);
2024-08-08 13:26:17 +08:00
SQLPP_COMPARE( custom_query(sqlpp::insert(), sqlpp::verbatim(" OR IGNORE"), into(bar), batch),
"INSERT OR IGNORE INTO tab_bar (text_n,bool_nn) VALUES ('sample',1),('ample',0)");
#endif
2016-04-16 01:05:42 +08:00
return 0;
}