#include #include "ocilib.hpp" /* requires script demo/products.sql */ using namespace ocilib; const int ArraySize = 1000; int main(void) { try { Environment::Initialize(); Connection con("db", "usr", "pwd"); std::vector ints; std::vector strs; Statement st(con); st.Prepare("insert into products values(:i, :s)"); st.SetBindArraySize(ArraySize); st.Bind(":i", ints, BindInfo::In); st.Bind(":s", strs, 20, BindInfo::In); for (int i = 0; i< ArraySize; i++) { ostring str; str += "Name"; str += ((i + 1) + '0'); ints.push_back(i + 1); strs.push_back(str); } st.ExecutePrepared(); std::cout << "row processed : " << st.GetAffectedRows() << std::endl; } catch (std::exception &ex) { std::cout << ex.what() << std::endl; } Environment::Cleanup(); return EXIT_SUCCESS; }