Implement Statement.source property for js/bindings

This commit is contained in:
Anton Harniakou
2025-06-05 08:21:40 +03:00
parent c7ec4a6270
commit c00ebe94c0

View File

@@ -177,6 +177,10 @@ class Statement {
throw new Error("not implemented");
}
get source() {
return this.stmt.source;
}
get database() {
return this.db;
}