In a peer review I stumbled across some lines of Qt and more precisely on QSqlQuery that I never experienced before
QSqlQuery query(my_db);
query.prepare("SELECT * FROM Result "
"WHERE Tag=:some_tag AND Name=:my_name");
I was astonished by the syntax prepare("PlainOldCChain1" "PlainOldCChain2")
What kind of C++ object is "PlainOldCChain1" "PlainOldCChain2"
(I would have thought to some Initializer list but without { , } I am a little bit lost. I found only the prototype bool prepare(const QString & query)
)