// Stored Procedures are special - they populate our d->sqlda when executing, // so we don't have to call isc_dsql_fetch
QSqlQuery q; q.exec("execute procedure my_procedure"); q.next(); qDebug() << q.value(0); // outputs the first RETURN/OUT value
q.exec("insert into RNAMES (NAME) values (:NAME) returning ID");