Merge branch 'main' into feature/screen-management

This commit is contained in:
kjs 2025-10-08 10:57:06 +09:00
commit f2e66766c9
1 changed files with 2 additions and 2 deletions

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 {