chpark-sync #425

Merged
kjs merged 293 commits from chpark-sync into main 2026-03-23 09:36:36 +09:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 59fa6c4ed9 - Show all commits

View File

@ -111,10 +111,10 @@ export class OracleConnector implements DatabaseConnector {
// 🔥 COMMIT/ROLLBACK 명령은 직접 실행
if (isCOMMIT || isROLLBACK) {
if (isCOMMIT) {
await this.connection!.commit();
await (this.connection as any).commit();
console.log("✅ Oracle COMMIT 실행됨");
} else {
await this.connection!.rollback();
await (this.connection as any).rollback();
console.log("⚠️ Oracle ROLLBACK 실행됨");
}
return {