Low level sql is the cursor for the current database transaction and allows executing SQL directly, either for queries which are difficult to express using the ORM
For example you can take idea from below code-
self.env.cr.execute("some_sql", param1, param2, param3)
Npte- Low level sql necessary to clear caches when using CREATE,UPDATE or DELETE in SQL, but not SELECT .
0 Comment(s)