Select
The select
API allows you to retrieve data from a database. It allows you to fetch specific information based on your query criteria. With its intuitive syntax and flexibility, the Select
API makes it easy to retrieve the data you need.
SQL
Select * from Table_Name;
JsStore
var results = await connection.select({
from: "Table_Name"
});
//results will be array of objects.
console.log(results);