Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
2shady4u committed Jun 17, 2022
1 parent 96a7fce commit 917e13c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ Additionally, a video tutorial by [Mitch McCollum (finepointcgi)](https://github

- **query_result** (Array, default=[])

Contains the results from the latest query and is cleared after every new query.
Contains the results from the latest query **by value**; meaning that this property is safe to use when looping successive queries as it does not get overwritten by any future queries.

- **query_result_by_reference** (Array, default=[])

Contains the results from the latest query **by reference** and is, as a direct result, cleared and repopulated after every new query.

- **last_insert_rowid** (Integer, default=0)

Expand Down

0 comments on commit 917e13c

Please sign in to comment.