Merge branch 'feature/screen-management' of http://39.117.244.52:3000/kjs/ERP-node into feature/screen-management
This commit is contained in:
commit
1315cfedc4
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue