You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current interface is pretty similar to better-sqlite3. So I think it can be easy to work with kysely.
Regardless the statement.finalize call, in kysely, the only thing does not fit is the reader property on Statement, which is used to determine if it's a read operation or write:
Current interface is pretty similar to better-sqlite3. So I think it can be easy to work with kysely.
Regardless the statement.finalize call, in kysely, the only thing does not fit is the
reader
property onStatement
, which is used to determine if it's a read operation or write:Possible solution
I read the better-sqlite3 code, the value is like
(not sure what's the
pragmaMode
here)So I guess we should just add
to implement it.
I'm not familiar with sqlite library. If the thought above is doable, I can send PR for it.
The text was updated successfully, but these errors were encountered: