Merge branch 'feature/screen-management' of http://39.117.244.52:3000/kjs/ERP-node into feature/screen-management

This commit is contained in:
kjs 2025-10-13 12:00:42 +09:00
commit 1315cfedc4
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 {