We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db8a03e commit 25515b8Copy full SHA for 25515b8
src/js/bun/sqlite.ts
@@ -438,6 +438,8 @@ class Database implements SqliteTypes.Database {
438
return SQL.isInTransaction(this.#handle);
439
}
440
441
+ // Mark the Database prototype with a symbol to identify it as a bun-specific sqlite database.
442
+ // This is useful for the package author to detect which sqlite implementation is being used.
443
get [sqliteTypeSymbol]() {
444
return "bun:sqlite";
445
0 commit comments