I'm doing a Node-SQLite exercise. Here's some of the code:
const findDogByFur = (length, color) => {
db.all(
"SELECT * FROM Dog WHERE fur_length = $furLength AND fur_color = $furColor",
{
$furLength: length,
$furColor: color
},
(error, rows) => {
printQueryResults(rows);
}
);
});
Where in SQLite.org is the documentation for methods such as all? Why do some variables have $ in front of them without curly brackets?