Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie

I'm creating new definitions on my custom module and I have some doubts about the cursors I need to use.

Since I have developed my script on PyCharm I've created my set of cursor

try:
con = psycopg2.connect(host='SERVERIP', database='DBNAME', user='odoo', password='XXXXX')
cur = con.cursor()

 where I use just

cur.fetchone(), cur.execute and con.commit()

As far I can see the file sql_db.py define the cursors that Odoo is using, starting with cr or cnx.

Since I would like to use my module with any db without insert new credentials I need to understand how Odoo is working.

Is technically correct to delete my connection and cursor declaration and use just the cr. already present on Odoo like

cr.fetchone(), cr.execute and cnx.commit()

or do I need to create a new layer?

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
wrz 21
4488
0
mar 15
5424
1
lip 25
1588
2
mar 20
4904
5
gru 19
7914