콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
4290 화면

what is t technical understanding behind openerp's communication to postgresql ?

if a user selects a db in openerp UI and do a data insertion or updation or deletion how it affects in the relevant db in postgresql ?

아바타
취소
베스트 답변

Look at the main.py File method available to Create, Drop Database

https://github.com/odoo/odoo/blob/8.0/addons/web/controllers/main.py

아바타
취소
베스트 답변

Openerp/Odoo uses it's own ORM for comunicating to database. So all(almost) operations are layered through ORM and don't go directly to database, but finally every change appears in database.

아바타
취소