0
我嘗試從sqlite中獲取數據,我需要將查詢中的第n行和第(n + 1)行附加到mylist(列表中包含的第n和這裏(N + 1)行)是我到目前爲止的代碼如何從qt中的QSqlQuery中獲取第n條記錄
QSqlQuery query("SELECT country FROM artist");
while(query.next()){
m_datalist.append(new DataObject(query.value("country"),this_field _should_be_the_next_row_with_value contry));
}
我如何獲得的第n和第(N + 1)個從查詢在行同時?
謝謝它的作品像魅力 –