Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
10275 มุมมอง

I'm on ubuntu server 12.04 LTS,

Q1. I need to acces to the ir_ui_view table, and modify a column.

S1. For that I need to know the columns architecture, and perform a SQL query (UPDATE)

I am now connected to my database, I can List all tables on my database and view their names.

Could you tell me how to repond to Q1.

Is S1 a valid action ?.

 

 

อวตาร
ละทิ้ง

you can view ir_ui_view table by this query:- " select * from ir_ui_view; " do you have any idea about normal query to do your required action?

ผู้เขียน

The name of the column that I want to update is : arch. wich is the view XML architecture. I want to do an update of this column, by deleting some xml content. update ir_ui_view set arch='new xml content' where name='res.users.form'

ผู้เขียน

Or can I just access the xml content, and modify it, with a psql manipulation, without sql query ?

คำตอบที่ดีที่สุด

You can do that using menu Settings->Technical->Actions->Window Actions

อวตาร
ละทิ้ง