我有这样一个原始查询语句
string inputFile(argv[1]);
ifstream inFile(inputFile.c_str());
istringstream is;
is >> inFile.rdbuf(); //*******This is wrong and is what I'm having trouble with
function(is);
现在,我想使用SQLiteDatabase方法query重写它以获得相同的样式游标。那可能吗?