Basic queries
Last updated
Was this helpful?
Last updated
Was this helpful?
Basic queries to a database are done using . Since database providers are available as properties of the Database module, a simple query to a provider named main
would look like this:
Database queries are returned in the form of a object you can manipulate. For example, use the method to check if there were any results, or the to get the number of rows in the result.
To loop through all the rows, iterate over the method:
Rows are returned as objects which, as you can see in the example above, allow you to retrieve information from each row in the results. Here's the result:
See this example working in the site.