tndrle

Results 8 comments of tndrle

Hi, thanks for the suggestion. Is there any documentation about what is required for a backend to be compatible with Drizzle?

Maybe it's a problem with unfinalized prepared statements. `node-sqlite3-wasm` requires manually finalizing prepared statements...

Hi, thanks for reporting this issue. Except for general advice, I cannot help much without a code example that reproduces the error, I'm afraid. One thing you have to make...

Hi, thank you for all the details. To understand possible issues in the library better, I have two follow-up questions: 1. How did you use `isOpen`? Like `if (db.isOpen) {...

Hi, unfortunately, `testmod()` does not find your function. If you run `testmod(verbose=True)`, you get the following output: ```python >>> doctest.testmod(verbose=True) 12 items had no tests: __main__ __main__.Handler __main__.Handler.handle __main__.Interpreter __main__.Interpreter.__init__...

Hi, thanks for the PR and sorry for the late reply. I didn't have too much time recently. I hope I can look into it soon. Looks promising though, even...

I added PR #74 for querying rows as arrays. I prefer extending the existing methods like `get()` and `all()` with an `asArray` option instead of adding a new `raw()` method....

About the column meta data: there is `sqlite3_column_decltype()` and `sqlite3_column_type()`. You use the latter and assume the first row's column types apply to all returned rows, correct? Better-sqlite uses the...