Is it possible to fetch raw DB output of an Oracle DB within a QSqlQuery, e.g. by something like this:
QSqlQuery sqlQuery;
sqlQuery.prepare("exec dmbs_output.put_line('hello world');");
sqlQuery.exec();
Now I would like to access the output ('hello world' in this example).