// file : odb/oracle/statement.ixx // copyright : Copyright (c) 2005-2013 Code Synthesis Tools CC // license : ODB NCUEL; see accompanying LICENSE file using namespace std; namespace odb { namespace oracle { inline bulk_statement:: bulk_statement (connection_type& c, const std::string& text, statement_kind k, const binding* process, bool optimize, std::size_t batch, auto_handle* status) : statement (c, text, k, process, optimize), status_ (batch == 1 ? 0 : status) { } inline bulk_statement:: bulk_statement (connection_type& c, const char* text, statement_kind k, const binding* process, bool optimize, std::size_t batch, auto_handle* status) : statement (c, text, k, process, optimize), status_ (batch == 1 ? 0 : status) { } } }