Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
4293 Lượt xem

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 ?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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.

Ảnh đại diện
Huỷ bỏ