fix: correct transaction syntax for firebird

This commit is contained in:
Pavel
2025-06-03 13:56:13 +02:00
parent a19648a6e8
commit 8f4c61c259

View File

@@ -39,6 +39,10 @@ class Dumper extends SqlDumper {
}
}
}
beginTransaction() {
this.putCmd('^set ^transaction');
}
}
module.exports = Dumper;