以下是我尝试获取矢量后推的内容,而我现在缺少的是将其分配给字符串:
#include <iostream>
#include <sqlite3.h>
#include <vector>
using namespace std;
int main()
{
sqlite3 *db;
sqlite3_stmt * stmt;
std::vector< std::vector < std:: string > > result;
for( int i = 0; i < 4; i++ )
result.push_back(std::vector< std::string >());
if (sqlite3_open("abeserver.db", &db) == SQLITE_OK)
{
sqlite3_prepare( db, "SELECT * from abe_account;", -1, &stmt, NULL );
//preparing the statement
sqlite3_step( stmt ); //executing the statement
while( sqlite3_column_text( stmt, 0 ) )
{
for( int i = 0; i < 4; i++ )
result[i].pushback( std::string( (char *)sqlite3_column_text( st, i ) ) );
sqlite3_step( stmt );
}
}
else
{
cout << "Failed to open db\n";
}
sqlite3_finalize(stmt);
sqlite3_close(db);
return 0;
}
下面是我在 sqlite 上的数据库外观:
sqlite> select * from abe_account;
admin|Peter John|admin_account|password
我想通过sql select语句将值“admin”和“password”一起获取,然后将它们分配给一个字符串,我如何使用向量来获取这个元素[0]和元素[3]到一个字符串。因为我稍后需要它来进行 if compareTo 。
感谢所有的帮助!