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

Is there a way to access open erp sql queries?

아바타
취소

Can you please elaborate your question?

베스트 답변

Hi,

example sql querie update:

def _execute_query(self, cr,id_object ):            
        sql ='''update  my_table_name
                 set state= 'failure'
                 where  id =  %s 
                 ''' % (id_object)                     
        cr.execute(sql)
아바타
취소
베스트 답변

It is not recommended to type SQL-queries directly from a field and use that to access the DB. Reason is that you can make mistakes and mes sup everything, or worse, you are vulnerable to SQL-injections.

The better way is to make your own modules, with fixed SQL, and optional some input, like the example of Borni DHIFI. Than install that module and use a button or dropdown to let users execute the query and/or fill in the needed variables.

아바타
취소