本文整理汇总了C++中otl_connect::commit_nowait方法的典型用法代码示例。如果您正苦于以下问题:C++ otl_connect::commit_nowait方法的具体用法?C++ otl_connect::commit_nowait怎么用?C++ otl_connect::commit_nowait使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类otl_connect
的用法示例。
在下文中一共展示了otl_connect::commit_nowait方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: insert
void insert()
// insert rows into table
{
otl_stream o(50, // buffer size
"insert into test_tab values(:f1<int>,:f2<char[31]>)",
// SQL statement
db // connect object
);
o.set_commit(0); // turn off stream's "auto-commit"
char tmp[32];
for(int i=1;i<=123;++i){
#if defined(_MSC_VER)
#if (_MSC_VER >= 1400) // VC++ 8.0 or higher
sprintf_s(tmp,sizeof(tmp),"Name%d",i);
#else
sprintf(tmp,"Name%d",i);
#endif
#else
sprintf(tmp,"Name%d",i);
#endif
o<<i<<tmp;
}
o.flush(); // flush the stream's dirty buffer:
// execute the INSERT for the rows
// that are still in the stream buffer
db.commit_nowait(); // commit with no wait (new feature of Oracle 10.2)
}