在使用Core Interface时,SOCI绑定到行集指针

时间:2017-03-22 04:35:35

标签: c++ oracle soci

我有以下代码,我尝试使用SOCI的核心接口并将结果获取到行集对象。这段代码完美无缺,但我还是没有找到将结果集直接输入到行集指针。

int main(int argc, char* argv[])
{   
    std::string user = "dbuser1";
    std::string password= "dbuser1";
    std::string alias= "localhost:1521/ora12c"; 
    std::string connection = "service=" + alias + " user=" + user + " password=" + password;
    soci::rowset<soci::row>* rowSet = NULL;
    try
    {
        soci::session sociSession(soci::oracle, connection);
        soci::row row;
        std::vector<std::string> values;
        std::string m_sql = "SELECT *  FROM TEST_TABLE WHERE RECORD_STATUS =:1 AND LOGIN_STATUS=:2";
        values.push_back("0");
        values.push_back("1");

        soci::statement st(sociSession); 
        st.exchange(soci::into(row));
        for(std::size_t i=0; i<values.size(); ++i) 
        {
            st.exchange(soci::use(values[i]));
        }
        st.alloc();
        st.prepare(m_sql);
        st.define_and_bind();
        st.execute(true);

        //TODO get the result set to to rowSet 
    }

    catch (soci::oracle_soci_error const &e)
    {
        cout << "Oracle error: " << e.err_num_
             << " " << e.what() << endl;
    }
    catch (exception const &e)
    {
        cout << "Some other error: " << e.what() << endl;
    }
    return 0;
}

该文档的部分用于获取类似于soci::rowset_iterator<soci::row> it(st, row)的迭代器,而我在语句类中找到的最接近的是exchange_for_rowset。但是使用它也没有运气。是否有能力将结果集直接分配给社会中的soci::rowset<soci::row>*,或者我必须迭代它并分配它们。我是soci中Core Interface的新手,并没有找到太多的例子。非常感谢帮助。

0 个答案:

没有答案