2013-08-14 04:43:10 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013, Roland Bock
|
|
|
|
* 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 <iostream>
|
|
|
|
#include <sqlpp11/remove.h>
|
2014-01-29 03:53:22 +08:00
|
|
|
#include "Sample.h"
|
2013-11-11 01:03:39 +08:00
|
|
|
#include "MockDb.h"
|
|
|
|
#include "is_regular.h"
|
2013-08-14 04:43:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
DbMock db;
|
2014-01-19 03:58:51 +08:00
|
|
|
DbMock::_context_t printer(std::cerr);
|
2013-08-14 04:43:10 +08:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2014-01-29 03:53:22 +08:00
|
|
|
test::TabBar t;
|
2013-08-14 04:43:10 +08:00
|
|
|
|
|
|
|
auto x = t.alpha = 7;
|
|
|
|
auto y = t.beta = "kaesekuchen";
|
|
|
|
auto z = t.gamma = true;
|
|
|
|
|
2013-11-11 01:03:39 +08:00
|
|
|
{
|
|
|
|
using T = decltype(remove_from(t));
|
|
|
|
static_assert(sqlpp::is_regular<T>::value, "type requirement");
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
using T = decltype(remove_from(t).where(t.beta != "transparent"));
|
|
|
|
static_assert(sqlpp::is_regular<T>::value, "type requirement");
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2014-02-09 05:24:05 +08:00
|
|
|
using T = decltype(dynamic_remove_from(db, t).dynamic_using().dynamic_where());
|
2013-11-11 01:03:39 +08:00
|
|
|
static_assert(sqlpp::is_regular<T>::value, "type requirement");
|
|
|
|
}
|
|
|
|
|
2014-01-19 03:58:51 +08:00
|
|
|
interpret(remove_from(t), printer).flush();
|
|
|
|
interpret(remove_from(t).where(t.beta != "transparent"), printer).flush();
|
|
|
|
interpret(remove_from(t).using_(t), printer).flush();
|
2014-02-09 05:24:05 +08:00
|
|
|
auto r = dynamic_remove_from(db, t).dynamic_using().dynamic_where();
|
|
|
|
r.add_using(t);
|
|
|
|
r.add_where(t.beta != "transparent");
|
2014-01-19 03:58:51 +08:00
|
|
|
interpret(r, printer).flush();
|
2013-11-11 01:03:39 +08:00
|
|
|
|
2013-08-14 04:43:10 +08:00
|
|
|
return 0;
|
|
|
|
}
|