If the "id" field of the data in a WebSQL adapter is a string, the read method will break trying select it out
example: SELECT * FROM recipes WHERE ID = dbed3a0b-9fc4-4d94-a98c-2b632250104f
that errors, it should be
SELECT * FROM recipes WHERE ID = 'dbed3a0b-9fc4-4d94-a98c-2b632250104f'