Rebuilding with CalibreDB.

This commit is contained in:
2022-10-14 16:22:58 -05:00
parent f417165b62
commit 4e6e00fc54
159 changed files with 23868 additions and 0 deletions

9
test.php Executable file
View File

@ -0,0 +1,9 @@
<?php
$db = new SQLite3('metadata.sqlite');
$res = $db->query('SELECT * FROM tags');
while ($row = $res->fetchArray()) {
echo "{$row['id']} {$row['name']}"."<br />";
}