The names of the columns returned by the prepared statement.
Symbol
Statement.columnNames
readonly columnNames: string[]
const stmt = db.prepare("SELECT bar FROM foo WHERE bar = ?");
console.log(stmt.columnNames);
// => ["bar"]