Note that this also works with positional placeholders using the '?' token:<?php$stmt = $db->prepare('SELECT * FROM mytable WHERE foo = ? AND bar = ?');$stmt->bindValue(1, 'somestring', SQLITE3_TEXT);$stmt->bindValue(2, 42, SQLITE3_INTEGER);?>Positional numbering starts at 1.