Initial SQLite development #1

Merged
danieljsummers merged 25 commits from develop into main 2024-06-08 23:58:45 +00:00
Showing only changes of commit 259247464a - Show all commits

View File

@ -50,6 +50,7 @@ class DocumentList
if ($debug) echo '*** CALLED GENERATOR ***';
if ($this->result) {
if ($debug) echo 'There are results';
while ($row = $this->result->fetch(PDO::FETCH_ASSOC)) {
if ($debug) echo "<pre>Returning an item\n</pre>";
yield $this->mapper->map($row);