Menu

[e1f16e]: / db / replace.hpp  Maximize  Restore  History

Download this file

17 lines (11 with data), 364 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#ifndef _CHILON_DB_REPLACE_
#define _CHILON_DB_REPLACE_
#include <chilon/db/detail/insert_or_replace.hpp>
namespace chilon { namespace db {
template <class Columns>
struct replace : detail::insert_or_replace<Columns> {
replace(typename Columns::table_type const& table)
: detail::insert_or_replace<Columns>(table, "replace into ") {}
};
} }
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.