By looking an introductory tutorial on how to use SQLite in Swift (in the iOS context), I saw the following line of code:
let queryString = "INSERT INTO Heroes (name, powerrank) VALUES (?,?)"
tutorial URL : https://www.simplifiedios.net/swift-sqlite-tutorial/
I don't understand if this is a Swift feature of something which will be parsed by SQL
It it some kind of string interpolation, like:
var s = "The value is \(value)"
Or is it something else?